mirror of
https://github.com/bloeys/assimp-go.git
synced 2025-12-29 08:28:20 +00:00
24 lines
535 B
Go
Executable File
24 lines
535 B
Go
Executable File
package asig
|
|
|
|
type PrimitiveType int32
|
|
|
|
//Specifies types of primitives that can be present in a mesh
|
|
const (
|
|
PrimitiveTypePoint = 1 << 0
|
|
PrimitiveTypeLine = 1 << 1
|
|
PrimitiveTypeTriangle = 1 << 2
|
|
PrimitiveTypePolygon = 1 << 3
|
|
)
|
|
|
|
type MorphMethod int32
|
|
|
|
//Supported methods of mesh morphing
|
|
const (
|
|
//Interpolation between morph targets
|
|
MorphMethodVertexBlend = 0x1
|
|
//Normalized morphing between morph targets
|
|
MorphMethodMorphNormalized = 0x2
|
|
//Relative morphing between morph targets
|
|
MorphMethodMorphRelative = 0x3
|
|
)
|