Skip to content

Commit

Permalink
fix(modeling): added optional plane to poly3 TS definition
Browse files Browse the repository at this point in the history
  • Loading branch information
FishOrBear authored Aug 19, 2024
1 parent ad3d37d commit 2a3337a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/modeling/src/geometries/poly3/type.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Plane from '../../maths/plane/type'
import Vec3 from '../../maths/vec3/type'
import { Color } from '../types'

Expand All @@ -6,4 +7,5 @@ export default Poly3
declare interface Poly3 {
vertices: Array<Vec3>
color?: Color
plane?: Plane
}

0 comments on commit 2a3337a

Please sign in to comment.