Alpha
Alpha
The constructor to create an instance of TextGeometry.
Text to layout.
Optional
option: any = {}An object conforming to TextGeometryOption
.
Alpha
attributesThis hashmap has as id the name of the attribute to be set and as value the THREE.BufferAttribute | buffer to set it to. Rather than accessing this property directly, use .setAttribute and .getAttribute to access attributes of this geometry.
Alpha
boundingBounding box for the THREE.BufferGeometry | BufferGeometry, which can be calculated with .computeBoundingBox().
Alpha
boundingBounding sphere for the THREE.BufferGeometry | BufferGeometry, which can be calculated with .computeBoundingSphere().
Alpha
drawDetermines the part of the geometry to render. This should not be set directly, instead use .setDrawRange(...).
Alpha
groupsSplit the geometry into groups, each of which will be rendered in a separate WebGL draw call. This allows an array of materials to be used with the geometry.
Alpha
idUnique number for this THREE.BufferGeometry | BufferGeometry instance.
Alpha
indexAllows for vertices to be re-used across multiple triangles; this is called using "indexed triangles". Each triangle is associated with the indices of three vertices. This attribute therefore stores the index of each vertex for each triangular face. If this attribute is not set, the THREE.WebGLRenderer | renderer assumes that each three contiguous positions represent a single triangle.
Readonly
Alpha
isRead-only flag to check if a given object is of type BufferGeometry.
Alpha
morphHashmap of THREE.BufferAttribute | BufferAttributes holding details of the geometry's morph targets.
Once the geometry has been rendered, the morph attribute data cannot be changed. You will have to call .dispose(), and create a new instance of THREE.BufferGeometry | BufferGeometry.
{}
Alpha
morphUsed to control the morph target behavior; when set to true, the morph target data is treated as relative offsets, rather than as absolute positions/normals.
Alpha
nameOptional name for this THREE.BufferGeometry | BufferGeometry instance.
Readonly
Alpha
typeA Read-only string to check if this
object type.
Alpha
userAn object that can be used to store custom data about the BufferGeometry. It should not hold references to functions as these will not be cloned.
Alpha
uuidUUID of this object instance.
Alpha
The options conforming to the TextGeometryOption interface.
Alpha
Adds a listener to an event type.
The type of event to listen to.
The function that gets called when the event is fired.
Alpha
Alpha
Adds a group to this geometry
Optional
materialIndex: numberthe groups property for details.
Alpha
Computes vertex normals for the given vertex data. For indexed geometries, the method sets each vertex normal to be the average of the face normals of the faces that share that vertex. For non-indexed geometries, vertices are not shared, and the method sets each vertex normal to be the same as the face normal.
Alpha
Deletes the attribute with the specified name.
Alpha
Fire an event type.
Alpha
Return the .index buffer.
Alpha
Returns true if the attribute with the specified name exists.
Alpha
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.
Alpha
Alpha
Removes a listener from an event type.
The type of the listener that gets removed.
The listener function that gets removed.
Alpha
Alpha
Sets an attribute to this geometry with the specified name.
Use this rather than the attributes property, because an internal hashmap of .attributes is maintained to speed up iterating over attributes.
Alpha
Set the .drawRange property
is the number of vertices or indices to render. Expects a Integer
Alpha
Convert the buffer geometry to three.js JSON Object/Scene format.
The class that generates THREE.BufferGeometry from BMFont data.
TextGeometry