This commit is contained in:
Andrey Parhomenko 2023-12-14 22:01:07 +03:00
parent 9ab3b9bb4d
commit 4fdb569bca
4 changed files with 12 additions and 5 deletions

View file

@ -1,7 +1,7 @@
package main
import (
"github.com/omnipunk/gg"
"github.com/di4f/gg"
"github.com/hajimehoshi/ebiten/v2/examples/resources/images"
"github.com/hajimehoshi/ebiten/v2"
"bytes"
@ -258,6 +258,10 @@ func (d *Debug) Draw(
keyStrs = append(keyStrs, k.String())
}
if rectMove.ContainsPoint(e.AbsCursorPosition()) {
keyStrs = append(keyStrs, "contains cursor")
}
if rectMove.Vertices().Contained(rect).Len() > 0 ||
rect.Vertices().Contained(rectMove).Len() > 0 {
keyStrs = append(keyStrs, "THIS IS SHIT")

View file

@ -4,7 +4,7 @@ package gg
// the engine to work faster about
// collisions because it first checks
// if the the bigger collider that
// contain more complicated structure
// contains more complicated (accurate) structure
// do collide.
type ColliderSimplifier interface {
ColliderSimplify() Triangle
@ -16,6 +16,10 @@ type Collision struct {
Current, With any
}
type PointContainer interface {
ContainsPoint(Point) bool
}
// Implementing the interface lets the engine
// to determine if the object collides with anything.
// Mostly will use the Collide function with some

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/omnipunk/gg
module github.com/di4f/gg
go 1.21

View file

@ -142,7 +142,6 @@ func (what LineSegments) Cross(with LineSegments) ([][2]int, Points) {
for j := range with {
p, cross := LinersCross(what[i], with[j])
if cross {
fmt.Println("in")
points = append(points, p)
indexes = append(indexes, [2]int{i, j})
}