diff --git a/docs/api/en/core/BufferGeometry.html b/docs/api/en/core/BufferGeometry.html index db0a12925ccde4..00f8874091fd89 100644 --- a/docs/api/en/core/BufferGeometry.html +++ b/docs/api/en/core/BufferGeometry.html @@ -119,12 +119,13 @@

[property:Sphere boundingSphere]

[property:Object drawRange]

- Used to determine what part of the geometry should be rendered. This should not - be set directly, instead use [page:.setDrawRange].
- Default is + Determines the part of the geometry to render. This should not + be set directly, instead use [page:.setDrawRange]. Default is { start: 0, count: Infinity } + For non-indexed BufferGeometry, count is the number of vertices to render. + For indexed BufferGeometry, count is the number of indices to render.

[property:Array groups]

@@ -316,7 +317,8 @@

[method:null setIndex] ( [param:BufferAttribute index] )

Set the [page:.index] buffer.

[method:null setDrawRange] ( [param:Integer start], [param:Integer count] )

-

Set the [page:.drawRange] buffer. See that property for details.

+

Set the [page:.drawRange] property. For non-indexed BufferGeometry, count is the number of vertices to render. + For indexed BufferGeometry, count is the number of indices to render.

[method:BufferGeometry setFromObject] ( [param:Object3D object] )

Sets the attributes for this BufferGeometry from an [page:Object3D].