소스 검색

added collision shapes

danaugrs 7 년 전
부모
커밋
da233fb599
4개의 변경된 파일23개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      physics/shape/box.go
  2. 6 0
      physics/shape/capsule.go
  3. 6 0
      physics/shape/cylinder.go
  4. 6 0
      physics/shape/heightfield.go

+ 5 - 0
physics/shape/box.go

@@ -0,0 +1,5 @@
+// Copyright 2016 The G3N Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package shape

+ 6 - 0
physics/shape/capsule.go

@@ -0,0 +1,6 @@
+// Copyright 2016 The G3N Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package shape
+

+ 6 - 0
physics/shape/cylinder.go

@@ -0,0 +1,6 @@
+// Copyright 2016 The G3N Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package shape
+

+ 6 - 0
physics/shape/heightfield.go

@@ -0,0 +1,6 @@
+// Copyright 2016 The G3N Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package shape
+