collision.go 354 B

1234567891011121314
  1. // Copyright 2016 The G3N Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package collision
  5. import "github.com/g3n/engine/geometry"
  6. // TODO collision checking function dependent on collision shapes
  7. func CheckConvex(g1, g2 *geometry.Geometry) bool {
  8. return true
  9. }