From ea1708f6cba35e14e0efdff5c0697a2ecba7f731 Mon Sep 17 00:00:00 2001 From: Michael Blix Date: Wed, 1 Jun 2016 20:43:21 -0700 Subject: [PATCH] Remove cylinder parameter from ConeGeometry docs (#9055) --- docs/api/extras/geometries/ConeBufferGeometry.html | 6 +++--- docs/api/extras/geometries/ConeGeometry.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/api/extras/geometries/ConeBufferGeometry.html b/docs/api/extras/geometries/ConeBufferGeometry.html index 2835b81c1b..29ca8f9263 100644 --- a/docs/api/extras/geometries/ConeBufferGeometry.html +++ b/docs/api/extras/geometries/ConeBufferGeometry.html @@ -1,7 +1,7 @@ - + @@ -29,13 +29,13 @@

Constructor

-

[name]([page:Float radiusTop], [page:Float radiusBottom], [page:Float height], [page:Integer radiusSegments], [page:Integer heightSegments], [page:Boolean openEnded], [page:Float thetaStart], [page:Float thetaLength])

+

[name]([page:Float radius], [page:Float height], [page:Integer radiusSegments], [page:Integer heightSegments], [page:Boolean openEnded], [page:Float thetaStart], [page:Float thetaLength])

radius — Radius of the cone base. Default is 20.
height — Height of the cone. Default is 100.
radiusSegments — Number of segmented faces around the circumference of the cone. Default is 8
heightSegments — Number of rows of faces along the height of the cone. Default is 1.
- openEnded — A Boolean indicating whether the ends of the cone are open or capped. Default is false, meaning capped.
+ openEnded — A Boolean indicating whether the base of the cone is open or capped. Default is false, meaning capped.
thetaStart — Start angle for first segment, default = 0 (three o'clock position).
thetaLength — The central angle, often called theta, of the circular sector. The default is 2*Pi, which makes for a complete cone.
diff --git a/docs/api/extras/geometries/ConeGeometry.html b/docs/api/extras/geometries/ConeGeometry.html index 58a7715369..7de3a0060c 100644 --- a/docs/api/extras/geometries/ConeGeometry.html +++ b/docs/api/extras/geometries/ConeGeometry.html @@ -1,7 +1,7 @@ - + @@ -29,13 +29,13 @@

Constructor

-

[name]([page:Float radiusTop], [page:Float radiusBottom], [page:Float height], [page:Integer radiusSegments], [page:Integer heightSegments], [page:Boolean openEnded], [page:Float thetaStart], [page:Float thetaLength])

+

[name]([page:Float radius], [page:Float height], [page:Integer radiusSegments], [page:Integer heightSegments], [page:Boolean openEnded], [page:Float thetaStart], [page:Float thetaLength])

radius — Radius of the cone at the base. Default is 20.
height — Height of the cone. Default is 100.
radiusSegments — Number of segmented faces around the circumference of the cone. Default is 8
heightSegments — Number of rows of faces along the height of the cone. Default is 1.
- openEnded — A Boolean indicating whether the ends of the cone are open or capped. Default is false, meaning capped.
+ openEnded — A Boolean indicating whether the base of the cone is open or capped. Default is false, meaning capped.
thetaStart — Start angle for first segment, default = 0 (three o'clock position).
thetaLength — The central angle, often called theta, of the circular sector. The default is 2*Pi, which makes for a complete cone.
-- GitLab