예제 #1
0
// SetFriction sets coefficient of friction.
func (s shapeBase) SetFriction(f float64) {
	C.cpShapeSetFriction(s.c(), C.cpFloat(f))
}
예제 #2
0
파일: chipmunk.go 프로젝트: andrebq/exp
func (s *Shape) SetFriction(val float32) {
	C.cpShapeSetFriction(s.shape, f(val))
}