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 @@
- 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.
Set the [page:.index] buffer.
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.
Sets the attributes for this BufferGeometry from an [page:Object3D].