EmbeddedAreaPlaneConvexSubsetTest.java
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.geometry.euclidean.threed;
import java.util.Arrays;
import java.util.List;
import java.util.regex.Pattern;
import org.apache.commons.geometry.core.GeometryTestUtils;
import org.apache.commons.geometry.core.RegionLocation;
import org.apache.commons.geometry.core.partitioning.Split;
import org.apache.commons.geometry.core.partitioning.SplitLocation;
import org.apache.commons.geometry.euclidean.EuclideanTestUtils;
import org.apache.commons.geometry.euclidean.threed.rotation.QuaternionRotation;
import org.apache.commons.geometry.euclidean.twod.ConvexArea;
import org.apache.commons.geometry.euclidean.twod.Lines;
import org.apache.commons.geometry.euclidean.twod.Vector2D;
import org.apache.commons.geometry.euclidean.twod.path.LinePath;
import org.apache.commons.geometry.euclidean.twod.shape.Parallelogram;
import org.apache.commons.numbers.angle.Angle;
import org.apache.commons.numbers.core.Precision;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
class EmbeddedAreaPlaneConvexSubsetTest {
private static final double TEST_EPS = 1e-10;
private static final Precision.DoubleEquivalence TEST_PRECISION =
Precision.doubleEquivalenceOfEpsilon(TEST_EPS);
private static final EmbeddingPlane XY_PLANE_Z1 = Planes.fromPointAndPlaneVectors(Vector3D.of(0, 0, 1),
Vector3D.Unit.PLUS_X, Vector3D.Unit.PLUS_Y, TEST_PRECISION);
@Test
void testSpaceConversion() {
// arrange
final EmbeddingPlane plane = Planes.fromPointAndPlaneVectors(Vector3D.of(1, 0, 0),
Vector3D.Unit.PLUS_Y, Vector3D.Unit.PLUS_Z, TEST_PRECISION);
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(plane, ConvexArea.full());
// act/assert
EuclideanTestUtils.assertCoordinatesEqual(Vector2D.of(1, 2), ps.toSubspace(Vector3D.of(-5, 1, 2)), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(1, -2, 4), ps.toSpace(Vector2D.of(-2, 4)), TEST_EPS);
}
@Test
void testProperties_infinite() {
// arrange
final ConvexArea area = ConvexArea.full();
// act
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1, area);
// assert
Assertions.assertTrue(ps.isFull());
Assertions.assertFalse(ps.isEmpty());
Assertions.assertFalse(ps.isFinite());
Assertions.assertTrue(ps.isInfinite());
GeometryTestUtils.assertPositiveInfinity(ps.getSize());
Assertions.assertSame(XY_PLANE_Z1, ps.getPlane());
Assertions.assertSame(area, ps.getSubspaceRegion());
Assertions.assertEquals(0, ps.getVertices().size());
}
@Test
void testProperties_finite() {
// arrange
final ConvexArea area = ConvexArea.convexPolygonFromPath(LinePath.builder(TEST_PRECISION)
.appendVertices(Vector2D.ZERO, Vector2D.of(1, 0), Vector2D.of(0, 1))
.build(true));
// act
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1, area);
// assert
Assertions.assertFalse(ps.isFull());
Assertions.assertFalse(ps.isEmpty());
Assertions.assertTrue(ps.isFinite());
Assertions.assertFalse(ps.isInfinite());
Assertions.assertEquals(0.5, ps.getSize(), TEST_EPS);
Assertions.assertSame(XY_PLANE_Z1, ps.getPlane());
Assertions.assertSame(area, ps.getSubspaceRegion());
EuclideanTestUtils.assertVertexLoopSequence(
Arrays.asList(Vector3D.of(0, 0, 1), Vector3D.of(1, 0, 1), Vector3D.of(0, 1, 1)),
ps.getVertices(), TEST_PRECISION);
}
@Test
void testGetVertices_twoParallelLines() {
// arrange
final EmbeddingPlane plane = Planes.fromNormal(Vector3D.Unit.PLUS_Z, TEST_PRECISION).getEmbedding();
final PlaneConvexSubset sp = new EmbeddedAreaPlaneConvexSubset(plane, ConvexArea.fromBounds(
Lines.fromPointAndAngle(Vector2D.of(0, 1), Math.PI, TEST_PRECISION),
Lines.fromPointAndAngle(Vector2D.of(0, -1), 0.0, TEST_PRECISION)
));
// act
final List<Vector3D> vertices = sp.getVertices();
// assert
Assertions.assertEquals(0, vertices.size());
}
@Test
void testGetVertices_infiniteWithVertices() {
// arrange
final EmbeddingPlane plane = Planes.fromPointAndPlaneVectors(Vector3D.of(0, 0, 1), Vector3D.Unit.PLUS_X, Vector3D.Unit.PLUS_Y, TEST_PRECISION);
final PlaneConvexSubset sp = new EmbeddedAreaPlaneConvexSubset(plane, ConvexArea.fromBounds(
Lines.fromPointAndAngle(Vector2D.of(0, 1), Math.PI, TEST_PRECISION),
Lines.fromPointAndAngle(Vector2D.of(0, -1), 0.0, TEST_PRECISION),
Lines.fromPointAndAngle(Vector2D.of(1, 0), Angle.PI_OVER_TWO, TEST_PRECISION)
));
// act
final List<Vector3D> vertices = sp.getVertices();
// assert
Assertions.assertEquals(2, vertices.size());
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(1, -1, 1), vertices.get(0), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(1, 1, 1), vertices.get(1), TEST_EPS);
}
@Test
void testToTriangles_infinite() {
// arrange
final Pattern pattern = Pattern.compile("^Cannot convert infinite plane subset to triangles: .*");
// act/assert
GeometryTestUtils.assertThrowsWithMessage(() -> {
new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1, ConvexArea.full()).toTriangles();
}, IllegalStateException.class, pattern);
GeometryTestUtils.assertThrowsWithMessage(() -> {
final ConvexArea area = ConvexArea.fromBounds(Lines.fromPointAndAngle(Vector2D.ZERO, 0, TEST_PRECISION));
final EmbeddedAreaPlaneConvexSubset halfSpace = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1, area);
halfSpace.toTriangles();
}, IllegalStateException.class, pattern);
GeometryTestUtils.assertThrowsWithMessage(() -> {
final ConvexArea area = ConvexArea.fromBounds(
Lines.fromPointAndAngle(Vector2D.ZERO, 0, TEST_PRECISION),
Lines.fromPointAndAngle(Vector2D.ZERO, 0.5 * Math.PI, TEST_PRECISION));
final EmbeddedAreaPlaneConvexSubset halfSpaceWithVertices = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1, area);
halfSpaceWithVertices.toTriangles();
}, IllegalStateException.class, pattern);
}
@Test
void testToTriangles_finite() {
// arrange
final Vector3D p1 = Vector3D.of(0, 0, 1);
final Vector3D p2 = Vector3D.of(1, 0, 1);
final Vector3D p3 = Vector3D.of(2, 1, 1);
final Vector3D p4 = Vector3D.of(1.5, 1, 1);
final List<Vector2D> subPts = XY_PLANE_Z1.toSubspace(Arrays.asList(p1, p2, p3, p4));
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
ConvexArea.convexPolygonFromVertices(subPts, TEST_PRECISION));
// act
final List<Triangle3D> tris = ps.toTriangles();
// assert
Assertions.assertEquals(2, tris.size());
EuclideanTestUtils.assertVertexLoopSequence(Arrays.asList(p4, p1, p2),
tris.get(0).getVertices(), TEST_PRECISION);
EuclideanTestUtils.assertVertexLoopSequence(Arrays.asList(p4, p2, p3),
tris.get(1).getVertices(), TEST_PRECISION);
}
@Test
void testClassify() {
// arrange
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
Parallelogram.builder(TEST_PRECISION)
.setPosition(Vector2D.of(2, 3))
.setScale(2, 2)
.build());
// act/assert
checkPoints(ps, RegionLocation.INSIDE, Vector3D.of(2, 3, 1));
checkPoints(ps, RegionLocation.BOUNDARY,
Vector3D.of(1, 3, 1), Vector3D.of(3, 3, 1),
Vector3D.of(2, 2, 1), Vector3D.of(2, 4, 1));
checkPoints(ps, RegionLocation.OUTSIDE,
Vector3D.of(2, 3, 0), Vector3D.of(2, 3, 2),
Vector3D.of(0, 3, 1), Vector3D.of(4, 3, 1),
Vector3D.of(2, 1, 1), Vector3D.of(2, 5, 1));
}
@Test
void testClosest() {
// arrange
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
Parallelogram.builder(TEST_PRECISION)
.setPosition(Vector2D.of(2, 3))
.setScale(2, 2)
.build());
// act/assert
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(2, 3, 1), ps.closest(Vector3D.of(2, 3, 1)), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(2, 3, 1), ps.closest(Vector3D.of(2, 3, 100)), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(1, 2, 1),
ps.closest(Vector3D.of(-100, -100, -100)), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(3, 3.5, 1),
ps.closest(Vector3D.of(100, 3.5, 100)), TEST_EPS);
}
@Test
void testGetBounds_noBounds() {
// arrange
final EmbeddingPlane plane = Planes.fromPointAndPlaneVectors(Vector3D.of(0, 0, 1),
Vector3D.Unit.PLUS_Y, Vector3D.Unit.MINUS_X, TEST_PRECISION);
final EmbeddedAreaPlaneConvexSubset full = new EmbeddedAreaPlaneConvexSubset(plane, ConvexArea.full());
final EmbeddedAreaPlaneConvexSubset halfPlane = new EmbeddedAreaPlaneConvexSubset(plane,
ConvexArea.fromBounds(Lines.fromPointAndAngle(Vector2D.ZERO, 0, TEST_PRECISION)));
// act/assert
Assertions.assertNull(full.getBounds());
Assertions.assertNull(halfPlane.getBounds());
}
@Test
void testGetBounds_hasBounds() {
// arrange
final EmbeddingPlane plane = Planes.fromPointAndPlaneVectors(Vector3D.of(0, 0, 1),
Vector3D.Unit.PLUS_Y, Vector3D.Unit.MINUS_X, TEST_PRECISION);
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(plane,
ConvexArea.convexPolygonFromVertices(Arrays.asList(
Vector2D.of(1, 1), Vector2D.of(2, 1), Vector2D.of(1, 2)
), TEST_PRECISION));
// act
final Bounds3D bounds = ps.getBounds();
// assert
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(-2, 1, 1), bounds.getMin(), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.of(-1, 2, 1), bounds.getMax(), TEST_EPS);
}
@Test
void testTransform() {
// arrange
final AffineTransformMatrix3D t = AffineTransformMatrix3D.identity()
.rotate(QuaternionRotation.fromAxisAngle(Vector3D.Unit.PLUS_Y, -Angle.PI_OVER_TWO))
.scale(1, 1, 2)
.translate(Vector3D.of(1, 0, 0));
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
Parallelogram.builder(TEST_PRECISION)
.setPosition(Vector2D.of(2, 3))
.setScale(2, 2)
.build());
// act
final EmbeddedAreaPlaneConvexSubset result = ps.transform(t);
// assert
Assertions.assertFalse(result.isFull());
Assertions.assertFalse(result.isEmpty());
Assertions.assertTrue(result.isFinite());
Assertions.assertFalse(result.isInfinite());
Assertions.assertEquals(8, result.getSize(), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.Unit.MINUS_X, result.getPlane().getNormal(), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.Unit.PLUS_Z, result.getPlane().getU(), TEST_EPS);
EuclideanTestUtils.assertVertexLoopSequence(
Arrays.asList(Vector3D.of(0, 2, 2), Vector3D.of(0, 2, 6), Vector3D.of(0, 4, 6), Vector3D.of(0, 4, 2)),
result.getVertices(), TEST_PRECISION);
}
@Test
void testReverse() {
// arrange
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
Parallelogram.builder(TEST_PRECISION)
.setPosition(Vector2D.of(2, 3))
.setScale(2, 2)
.build());
// act
final EmbeddedAreaPlaneConvexSubset result = ps.reverse();
// assert
Assertions.assertFalse(result.isFull());
Assertions.assertFalse(result.isEmpty());
Assertions.assertTrue(result.isFinite());
Assertions.assertFalse(result.isInfinite());
Assertions.assertEquals(4, result.getSize(), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.Unit.MINUS_Z, result.getPlane().getNormal(), TEST_EPS);
EuclideanTestUtils.assertCoordinatesEqual(Vector3D.Unit.PLUS_Y, result.getPlane().getU(), TEST_EPS);
EuclideanTestUtils.assertVertexLoopSequence(
Arrays.asList(Vector3D.of(1, 4, 1), Vector3D.of(3, 4, 1), Vector3D.of(3, 2, 1), Vector3D.of(1, 2, 1)),
result.getVertices(), TEST_PRECISION);
}
@Test
void testSplit_plus() {
// arrange
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
ConvexArea.convexPolygonFromVertices(Arrays.asList(Vector2D.ZERO, Vector2D.of(1, 0), Vector2D.of(0, 1)),
TEST_PRECISION));
final Plane splitter = Planes.fromPointAndNormal(Vector3D.ZERO, Vector3D.Unit.PLUS_X, TEST_PRECISION);
// act
final Split<PlaneConvexSubset> split = ps.split(splitter);
// assert
Assertions.assertEquals(SplitLocation.PLUS, split.getLocation());
Assertions.assertNull(split.getMinus());
Assertions.assertSame(ps, split.getPlus());
}
@Test
void testSplit_minus() {
// arrange
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
ConvexArea.convexPolygonFromVertices(Arrays.asList(Vector2D.ZERO, Vector2D.of(1, 0), Vector2D.of(0, 1)),
TEST_PRECISION));
final Plane splitter = Planes.fromPointAndNormal(Vector3D.ZERO, Vector3D.Unit.MINUS_Z, TEST_PRECISION);
// act
final Split<PlaneConvexSubset> split = ps.split(splitter);
// assert
Assertions.assertEquals(SplitLocation.MINUS, split.getLocation());
Assertions.assertSame(ps, split.getMinus());
Assertions.assertNull(split.getPlus());
}
@Test
void testSplit_both() {
// arrange
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
ConvexArea.convexPolygonFromVertices(Arrays.asList(Vector2D.ZERO, Vector2D.of(1, 0), Vector2D.of(0, 1)),
TEST_PRECISION));
final Plane splitter = Planes.fromPointAndNormal(Vector3D.ZERO, Vector3D.of(-1, 1, 0), TEST_PRECISION);
// act
final Split<PlaneConvexSubset> split = ps.split(splitter);
// assert
Assertions.assertEquals(SplitLocation.BOTH, split.getLocation());
final PlaneConvexSubset minus = split.getMinus();
EuclideanTestUtils.assertVertexLoopSequence(
Arrays.asList(Vector3D.of(0, 0, 1), Vector3D.of(1, 0, 1), Vector3D.of(0.5, 0.5, 1)),
minus.getVertices(), TEST_PRECISION);
final PlaneConvexSubset plus = split.getPlus();
EuclideanTestUtils.assertVertexLoopSequence(
Arrays.asList(Vector3D.of(0, 0, 1), Vector3D.of(0.5, 0.5, 1), Vector3D.of(0, 1, 1)),
plus.getVertices(), TEST_PRECISION);
}
@Test
void testSplit_neither() {
// arrange
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
ConvexArea.convexPolygonFromVertices(Arrays.asList(Vector2D.ZERO, Vector2D.of(1, 0), Vector2D.of(0, 1)),
TEST_PRECISION));
final Plane splitter = Planes.fromPointAndNormal(Vector3D.of(0, 0, 1), Vector3D.of(0, 1e-15, -1), TEST_PRECISION);
// act
final Split<PlaneConvexSubset> split = ps.split(splitter);
// assert
Assertions.assertEquals(SplitLocation.NEITHER, split.getLocation());
Assertions.assertNull(split.getMinus());
Assertions.assertNull(split.getPlus());
}
@Test
void testSplit_usesVertexBasedSubsetsWhenPossible() {
// arrange
// create an infinite subset
final EmbeddingPlane plane = Planes.fromPointAndPlaneVectors(Vector3D.ZERO,
Vector3D.Unit.PLUS_X, Vector3D.Unit.PLUS_Y, TEST_PRECISION);
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(plane, ConvexArea.fromBounds(
Lines.fromPointAndAngle(Vector2D.ZERO, 0, TEST_PRECISION),
Lines.fromPointAndAngle(Vector2D.of(1, 0), Angle.PI_OVER_TWO, TEST_PRECISION),
Lines.fromPointAndAngle(Vector2D.of(0, 1), -Angle.PI_OVER_TWO, TEST_PRECISION)
));
final Plane splitter = Planes.fromPointAndNormal(Vector3D.of(0.5, 0.5, 0), Vector3D.of(-1, 1, 0), TEST_PRECISION);
// act
final Split<PlaneConvexSubset> split = ps.split(splitter);
// assert
Assertions.assertTrue(ps.isInfinite());
Assertions.assertEquals(SplitLocation.BOTH, split.getLocation());
final PlaneConvexSubset plus = split.getPlus();
Assertions.assertNotNull(plus);
Assertions.assertTrue(plus.isInfinite());
Assertions.assertTrue(plus instanceof EmbeddedAreaPlaneConvexSubset);
final PlaneConvexSubset minus = split.getMinus();
Assertions.assertNotNull(minus);
Assertions.assertFalse(minus.isInfinite());
Assertions.assertTrue(minus instanceof SimpleTriangle3D);
}
@Test
void testToString() {
// arrange
final EmbeddedAreaPlaneConvexSubset ps = new EmbeddedAreaPlaneConvexSubset(XY_PLANE_Z1,
ConvexArea.convexPolygonFromVertices(Arrays.asList(Vector2D.ZERO, Vector2D.of(1, 0), Vector2D.of(0, 1)),
TEST_PRECISION));
// act
final String str = ps.toString();
// assert
GeometryTestUtils.assertContains("EmbeddedAreaPlaneConvexSubset[plane= EmbeddingPlane[", str);
GeometryTestUtils.assertContains("subspaceRegion= ConvexArea[", str);
}
private static void checkPoints(final EmbeddedAreaPlaneConvexSubset ps, final RegionLocation loc, final Vector3D... pts) {
for (final Vector3D pt : pts) {
Assertions.assertEquals(loc, ps.classify(pt), "Unexpected location for point " + pt);
}
}
}