Skip to content

Commit 63468a9

Browse files
committed
up
1 parent 0750f57 commit 63468a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/kotlin/glm_/gtx_intersect.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ class gtx_intersect : StringSpec() {
1414

1515
val orig = Vec3(0, 0, 2)
1616
val dir = Vec3(0, 0, -1)
17-
val vert0=Vec3()
18-
val vert1=Vec3(-1, -1, 0)
17+
val vert0 = Vec3()
18+
val vert1 = Vec3(-1, -1, 0)
1919
val vert2 = Vec3(1, -1, 0)
20-
val baryPosition =Vec2()
20+
val baryPosition = Vec2()
2121

2222
val (result, distance) = glm.intersectRayTriangle(orig, dir, vert0, vert1, vert2, baryPosition)
2323

0 commit comments

Comments
 (0)