THREE CSS3DObject documentation?

css, dart, three.js

Solution

`CSS3DObject` basically extends `Object3D` and adds a `element` property.

https://github.com/mrdoob/three.js/blob/master/examples/js/renderers/CSS3DRenderer.js#L6-L31

Problem

I see demos and questions about Three's CSS3DObject BUT where are the docs for it? I am really interested since manipulating the 3D properties of css with three.js has too much sense. Note: Even Google Dart has docs for CSS3DObject in their own Three implementation. http://threedart.github.io/three.dart/docs/three/CSS3DObject.html

Original source