game-math icon indicating copy to clipboard operation
game-math copied to clipboard

Free open-source math library for games.

Results 24 game-math issues
Sort by recently updated
recently updated
newest added

Implement a line-ray intersection test with the following signature: ``` public static bool Intersects(this LineSegment2F line, Ray2F ray) ``` Call that method from ``` public static bool Intersects(this Ray2F ray,...

feature

Implement a line-line intersection test with the following signature: ``` public static bool Intersects(this LineSegment2F first, LineSegment2F second) ``` If you can, provide an overload with an out parameter containing...

feature

Implement an immutable Quaternion struct in the Core folder. - Write a struct summary comment. - Add the CLSCompliant attribute. - Implement IEquatable - Implement Equals and GetHashCode. - Implement...

feature

Implement an immutable Matrix struct in the Core folder. - Write a struct summary comment. - Add the CLSCompliant attribute. - Implement IEquatable - Implement Equals and GetHashCode. - Implement...

feature