Skip to content

gg-meta overview


Table of contents


utils

GgCurve (type alias)

Signature

export type GgCurve = { name: string; cyclic: boolean; points: Point3[] } & any

GgDummy (type alias)

Signature

export type GgDummy = { name: string; position: Point3; rotation: Point4 } & any

GgMeta (type alias)

Signature

export type GgMeta = {
  dummies: GgDummy[]
  curves: GgCurve[]
  rigidBodies: GgRigidBody[]
}

GgRigidBody (type alias)

Signature

export type GgRigidBody = { name: string; position: Point3; rotation: Point4 } & BodyShape3DDescriptor