| Package | Description |
|---|---|
| org.joml |
Contains all classes of JOML.
|
| Modifier and Type | Method and Description |
|---|---|
int |
AABBd.intersectLineSegment(LineSegmentf lineSegment,
Vector2d result)
Determine whether the given undirected line segment intersects this AABB, and return the values of the parameter t in the ray equation
p(t) = origin + p0 * (p1 - p0) of the near and far point of intersection.
|
int |
AABBf.intersectLineSegment(LineSegmentf lineSegment,
Vector2f result)
Determine whether the given undirected line segment intersects this AABB, and return the values of the parameter t in the ray equation
p(t) = origin + p0 * (p1 - p0) of the near and far point of intersection.
|
static int |
Intersectiond.intersectLineSegmentAab(LineSegmentf lineSegment,
AABBd aabb,
Vector2d result)
Determine whether the given undirected line segment intersects the given axis-aligned box,
and return the values of the parameter t in the ray equation p(t) = origin + p0 * (p1 - p0) of the near and far point of intersection.
|
static int |
Intersectionf.intersectLineSegmentAab(LineSegmentf lineSegment,
AABBf aabb,
Vector2f result)
Determine whether the given undirected line segment intersects the given axis-aligned box,
and return the values of the parameter t in the ray equation p(t) = origin + p0 * (p1 - p0) of the near and far point of intersection.
|
| Constructor and Description |
|---|
LineSegmentf(LineSegmentf source)
Create a new
LineSegmentf as a copy of the given source. |
Copyright © 2015–2019 JOML. All rights reserved.