Browse Source

docs: ring type and reference

astanusic 2 years ago
parent
commit
71a27b01b9
1 changed files with 13 additions and 0 deletions
  1. 13 0
      docs/cientos/shapes/ring.md

+ 13 - 0
docs/cientos/shapes/ring.md

@@ -4,6 +4,19 @@
 
 
 The `cientos` package provides a `<Ring />` component that serves as a short-cut for a `RingGeometry` and a `MeshBasicMaterial` with a `Mesh` object.
 The `cientos` package provides a `<Ring />` component that serves as a short-cut for a `RingGeometry` and a `MeshBasicMaterial` with a `Mesh` object.
 
 
+```typescript
+args: [
+         innerRadius: number,
+         outerRadius: number,
+         thetaSegments: number,
+         phiSegments: number,
+         thetaStart: number,
+         thetaLength: number
+      ]
+```
+reference: [RingGeometry](https://threejs.org/docs/?q=ring#api/en/geometries/RingGeometry)
+
+
 ## Usage
 ## Usage
 
 
 ```html
 ```html