예제 #1
0
// Step makes the space step forward in time by dt seconds.
func (s *Space) Step(dt float64) {
	C.cpSpaceStep(s.c(), C.cpFloat(dt))
}
예제 #2
0
파일: chipmunk.go 프로젝트: andrebq/exp
func (s *Space) Step(timeStep float32) {
	C.cpSpaceStep(s.s, f(timeStep))
}