Selaa lähdekoodia

Fix TSDoc for ConeBufferGeometry

Kevin LEVRON 4 vuotta sitten
vanhempi
commit
43fe1848cb
1 muutettua tiedostoa jossa 6 lisäystä ja 7 poistoa
  1. 6 7
      src/geometries/ConeBufferGeometry.d.ts

+ 6 - 7
src/geometries/ConeBufferGeometry.d.ts

@@ -3,14 +3,13 @@ import { CylinderBufferGeometry } from './CylinderBufferGeometry';
 export class ConeBufferGeometry extends CylinderBufferGeometry {
 
 	/**
-	 * @param [radiusTop=0] — Radius of the cylinder at the top.
-	 * @param [radiusBottom=1] — Radius of the cylinder at the bottom.
-	 * @param [height=1] — Height of the cylinder.
-	 * @param [radiusSegments=8] — Number of segmented faces around the circumference of the cylinder.
-	 * @param [heightSegments=1] — Number of rows of faces along the height of the cylinder.
-	 * @param [openEnded=false] - A Boolean indicating whether or not to cap the ends of the cylinder.
+	 * @param [radius=1] — Radius of the cone base.
+	 * @param [height=1] — Height of the cone.
+	 * @param [radiusSegments=8] — Number of segmented faces around the circumference of the cone.
+	 * @param [heightSegments=1] — Number of rows of faces along the height of the cone.
+	 * @param [openEnded=false] — A Boolean indicating whether the base of the cone is open or capped.
 	 * @param [thetaStart=0]
-	 * @param [widthSegments=Math.PI * 2]
+	 * @param [thetaLength=Math.PI * 2]
 	 */
 	constructor(
 		radius?: number,