コード例 #1
0
ファイル: chipmunk.go プロジェクト: ftrvxmtrx/gochipmunk
// c converts Layers to c.cpLayers.
func (l Layers) c() C.cpLayers {
	return C.cpLayers(l)
}
コード例 #2
0
ファイル: chipmunk.go プロジェクト: andrebq/exp
func (s *Shape) SetLayers(layer Layer) {
	C.cpShapeSetLayers(s.shape, C.cpLayers(C.uint(layer)))
}