An instance of BufferGeometry.
An instance of Material (optional).
Array with animation clips.
Gets rendered into shadow map.
Array with object's children.
Custom depth material to be used when rendering to the depth map. Can only be used in context of meshes. When shadow-casting with a DirectionalLight or SpotLight, if you are (a) modifying vertex positions in the vertex shader, (b) using a displacement map, (c) using an alpha map with alphaTest, or (d) using a transparent texture with alphaTest, you must specify a customDepthMaterial for proper shadows.
Same as customDepthMaterial, but used with PointLight.
This allows to discard the ray testing.
When this is set, it checks every frame if the object is in the frustum of the camera before rendering the object. If set to false the object gets rendered every frame even if it is not in the frustum of the camera.
An instance of BufferGeometry, where each vertex designates the position of a particle in the system.
Unique number of this object instance.
Used to check whether this or derived classes are Object3Ds. Default is true. You should not change this, as it is used internally for optimisation.
An instance of Material, defining the object's appearance. Default is a PointsMaterial with randomised colour.
Local transform.
When this is set, it calculates the matrix of position, (rotation or quaternion) and scale every frame and also recalculates the matrixWorld property.
The global transform of the object. If the Object3d has no parent, then it's identical to the local transform.
When this is set, it calculates the matrixWorld in that frame and resets this property to false.
Optional name of the object (doesn't need to be unique).
Calls after rendering object
Calls before rendering object
Object's parent in the scene graph.
Object's local position.
Object's local rotation as a Quaternion.
Material gets baked in shadow receiving.
Overrides the default rendering order of scene graph objects, from lowest to highest renderOrder. Opaque and transparent objects remain sorted independently though. When this property is set for an instance of Group, all descendants objects will be sorted and rendered together.
Object's local rotation (Euler angles), in radians.
Object's local scale.
Up direction.
An object that can be used to store custom data about the Object3d. It should not hold references to functions as these will not be cloned.
Object gets rendered if true.
Adds object as child of this object.
Adds a listener to an event type.
The type of event to listen to.
The function that gets called when the event is fired.
This updates the position, rotation and scale with the matrix.
Adds object as a child of this, while maintaining the object's world transform.
Removes all child objects.
Fire an event type.
Searches through the object's children and returns the first with a matching id.
Unique number of the object instance
Searches through the object's children and returns the first with a matching name.
String to match to the children's Object3d.name property.
Checks if listener is added to an event type.
The type of event to listen to.
The function that gets called when the event is fired.
Updates the vector from local space to world space.
A local vector.
Rotates object to face point in space.
A world vector to look at.
This method is similar to the original method raycast
in [[THREE.Points]] except that it
then calls the tailored testPoint
method in the children classes to test intersections
depending on whether the points are circles or squares, which [[THREE.Points]] cannot do.
The raycaster.
The array to fill with the results.
Removes object as child of this object.
Removes a listener from an event type.
The type of the listener that gets removed.
The listener function that gets removed.
Removes this object from its current parent.
Rotate an object along an axis in object space. The axis is assumed to be normalized.
A normalized vector in object space.
The angle in radians.
Rotate an object along an axis in world space. The axis is assumed to be normalized. Method Assumes no rotated parent.
A normalized vector in object space.
The angle in radians.
Implements the intersection testing in screen space between the drawn points and the ray.
The point to test.
The point position on screen.
The picking position on screen.
The index of the point in the [[THREE.BufferGeometry]].
The distance between the point and the ray origin.
The results array.
A normalized vector in object space.
The distance to translate.
Translates object along x axis by distance.
Distance.
Translates object along y axis by distance.
Distance.
Translates object along z axis by distance.
Distance.
Updates local transform.
Updates global transform of the object and its children.
Updates the vector from world space to local space.
A world vector.
Generated using TypeDoc
MapViewPoints
is a class to extend for the"circles"
and"squares"
techniques to implement raycasting ofTHREE.Points
as expected in MapView, that are in screen space.It copies the behaviour of the
raycast
method in [[THREE.Points]] and dispatches it to its children classes, Circles and Squares, who hold the intersection testing in thetestPoint
method. This class also has the ability to dismiss the testing via theenableRayTesting
flag.Its main motivation is to handle the point styles of XYZ projects.
https://github.com/mrdoob/three.js/blob/master/src/objects/Points.js