Module path_follow

Consts

ROTATION_NONE* = 0'i64
ROTATION_Y* = 1'i64
ROTATION_XY* = 2'i64
ROTATION_XYZ* = 3'i64

Procs

proc setOffset*(self: PathFollow; offset: float64) {.
gcsafe, locks: 0
.}
proc getOffset*(self: PathFollow): float64 {.
gcsafe, locks: 0
.}
proc setHOffset*(self: PathFollow; hOffset: float64) {.
gcsafe, locks: 0
.}
proc getHOffset*(self: PathFollow): float64 {.
gcsafe, locks: 0
.}
proc setVOffset*(self: PathFollow; vOffset: float64) {.
gcsafe, locks: 0
.}
proc getVOffset*(self: PathFollow): float64 {.
gcsafe, locks: 0
.}
proc setUnitOffset*(self: PathFollow; unitOffset: float64) {.
gcsafe, locks: 0
.}
proc getUnitOffset*(self: PathFollow): float64 {.
gcsafe, locks: 0
.}
proc setRotationMode*(self: PathFollow; rotationMode: int64) {.
gcsafe, locks: 0
.}
proc getRotationMode*(self: PathFollow): int64 {.
gcsafe, locks: 0
.}
proc setCubicInterpolation*(self: PathFollow; enable: bool) {.
gcsafe, locks: 0
.}
proc getCubicInterpolation*(self: PathFollow): bool {.
gcsafe, locks: 0
.}
proc setLoop*(self: PathFollow; loop: bool) {.
gcsafe, locks: 0
.}
proc hasLoop*(self: PathFollow): bool {.
gcsafe, locks: 0
.}