Skip to content

Commit

Permalink
Remove cylinder parameter from ConeGeometry docs (mrdoob#9055)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeblx authored and mrdoob committed Jun 2, 2016
1 parent 5b491ed commit ea1708f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/api/extras/geometries/ConeBufferGeometry.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta charset="utf-8" />
<base href="../../../" />
<script src="list.js"></script>
<script src="page.js"></script>
Expand Down Expand Up @@ -29,13 +29,13 @@ <h2>Example</h2>
<h2>Constructor</h2>


<h3>[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])</h3>
<h3>[name]([page:Float radius], [page:Float height], [page:Integer radiusSegments], [page:Integer heightSegments], [page:Boolean openEnded], [page:Float thetaStart], [page:Float thetaLength])</h3>
<div>
radius — Radius of the cone base. Default is 20.<br />
height — Height of the cone. Default is 100.<br />
radiusSegments — Number of segmented faces around the circumference of the cone. Default is 8<br />
heightSegments — Number of rows of faces along the height of the cone. Default is 1.<br />
openEnded — A Boolean indicating whether the ends of the cone are open or capped. Default is false, meaning capped.<br />
openEnded — A Boolean indicating whether the base of the cone is open or capped. Default is false, meaning capped.<br />
thetaStart — Start angle for first segment, default = 0 (three o'clock position).<br />
thetaLength — The central angle, often called theta, of the circular sector. The default is 2*Pi, which makes for a complete cone.
</div>
Expand Down
6 changes: 3 additions & 3 deletions docs/api/extras/geometries/ConeGeometry.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta charset="utf-8" />
<base href="../../../" />
<script src="list.js"></script>
<script src="page.js"></script>
Expand Down Expand Up @@ -29,13 +29,13 @@ <h2>Example</h2>
<h2>Constructor</h2>


<h3>[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])</h3>
<h3>[name]([page:Float radius], [page:Float height], [page:Integer radiusSegments], [page:Integer heightSegments], [page:Boolean openEnded], [page:Float thetaStart], [page:Float thetaLength])</h3>
<div>
radius — Radius of the cone at the base. Default is 20.<br />
height — Height of the cone. Default is 100.<br />
radiusSegments — Number of segmented faces around the circumference of the cone. Default is 8<br />
heightSegments — Number of rows of faces along the height of the cone. Default is 1.<br />
openEnded — A Boolean indicating whether the ends of the cone are open or capped. Default is false, meaning capped.<br />
openEnded — A Boolean indicating whether the base of the cone is open or capped. Default is false, meaning capped.<br />
thetaStart — Start angle for first segment, default = 0 (three o'clock position).<br />
thetaLength — The central angle, often called theta, of the circular sector. The default is 2*Pi, which makes for a complete cone.
</div>
Expand Down

0 comments on commit ea1708f

Please sign in to comment.