Fixed SubCircle behaviour in parallel circles case.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1555088 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3491906594
commit
bb014c3ebf
|
@ -16,6 +16,7 @@
|
|||
*/
|
||||
package org.apache.commons.math3.geometry.spherical.twod;
|
||||
|
||||
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
|
||||
import org.apache.commons.math3.geometry.partitioning.AbstractSubHyperplane;
|
||||
import org.apache.commons.math3.geometry.partitioning.Hyperplane;
|
||||
import org.apache.commons.math3.geometry.partitioning.Region;
|
||||
|
@ -23,6 +24,7 @@ import org.apache.commons.math3.geometry.partitioning.Side;
|
|||
import org.apache.commons.math3.geometry.spherical.oned.Arc;
|
||||
import org.apache.commons.math3.geometry.spherical.oned.ArcsSet;
|
||||
import org.apache.commons.math3.geometry.spherical.oned.Sphere1D;
|
||||
import org.apache.commons.math3.util.FastMath;
|
||||
|
||||
/** This class represents a sub-hyperplane for {@link Circle}.
|
||||
* @version $Id$
|
||||
|
@ -52,8 +54,15 @@ public class SubCircle extends AbstractSubHyperplane<Sphere2D, Sphere1D> {
|
|||
|
||||
final Circle thisCircle = (Circle) getHyperplane();
|
||||
final Circle otherCircle = (Circle) hyperplane;
|
||||
final Arc arc = thisCircle.getInsideArc(otherCircle);
|
||||
return ((ArcsSet) getRemainingRegion()).side(arc);
|
||||
final double angle = Vector3D.angle(thisCircle.getPole(), otherCircle.getPole());
|
||||
|
||||
if (angle < thisCircle.getTolerance() || angle > FastMath.PI - thisCircle.getTolerance()) {
|
||||
// the two circles are aligned or opposite
|
||||
return Side.HYPER;
|
||||
} else {
|
||||
// the two circles intersect each other
|
||||
return ((ArcsSet) getRemainingRegion()).side(thisCircle.getInsideArc(otherCircle));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -63,10 +72,23 @@ public class SubCircle extends AbstractSubHyperplane<Sphere2D, Sphere1D> {
|
|||
|
||||
final Circle thisCircle = (Circle) getHyperplane();
|
||||
final Circle otherCircle = (Circle) hyperplane;
|
||||
final Arc arc = thisCircle.getInsideArc(otherCircle);
|
||||
final ArcsSet.Split split = ((ArcsSet) getRemainingRegion()).split(arc);
|
||||
return new SplitSubHyperplane<Sphere2D>(new SubCircle(thisCircle.copySelf(), split.getPlus()),
|
||||
new SubCircle(thisCircle.copySelf(), split.getMinus()));
|
||||
final double angle = Vector3D.angle(thisCircle.getPole(), otherCircle.getPole());
|
||||
|
||||
if (angle < thisCircle.getTolerance()) {
|
||||
// the two circles are aligned
|
||||
return new SplitSubHyperplane<Sphere2D>(null, this);
|
||||
} else if (angle > FastMath.PI - thisCircle.getTolerance()) {
|
||||
// the two circles are opposite
|
||||
return new SplitSubHyperplane<Sphere2D>(this, null);
|
||||
} else {
|
||||
// the two circles intersect each other
|
||||
final Arc arc = thisCircle.getInsideArc(otherCircle);
|
||||
final ArcsSet.Split split = ((ArcsSet) getRemainingRegion()).split(arc);
|
||||
final ArcsSet plus = split.getPlus();
|
||||
final ArcsSet minus = split.getMinus();
|
||||
return new SplitSubHyperplane<Sphere2D>(plus == null ? null : new SubCircle(thisCircle.copySelf(), plus),
|
||||
minus == null ? null : new SubCircle(thisCircle.copySelf(), minus));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,121 @@
|
|||
/*
|
||||
* 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
|
||||
*
|
||||
* http://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.math3.geometry.spherical.twod;
|
||||
|
||||
import org.apache.commons.math3.geometry.euclidean.threed.Rotation;
|
||||
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
|
||||
import org.apache.commons.math3.geometry.partitioning.RegionFactory;
|
||||
import org.apache.commons.math3.geometry.partitioning.Side;
|
||||
import org.apache.commons.math3.geometry.partitioning.SubHyperplane.SplitSubHyperplane;
|
||||
import org.apache.commons.math3.geometry.spherical.oned.ArcsSet;
|
||||
import org.apache.commons.math3.geometry.spherical.oned.Sphere1D;
|
||||
import org.apache.commons.math3.util.MathUtils;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
public class SubCircleTest {
|
||||
|
||||
@Test
|
||||
public void testFullCircle() {
|
||||
Circle circle = new Circle(Vector3D.PLUS_K, 1.0e-10);
|
||||
SubCircle set = circle.wholeHyperplane();
|
||||
Assert.assertEquals(MathUtils.TWO_PI, set.getSize(), 1.0e-10);
|
||||
Assert.assertTrue(circle == set.getHyperplane());
|
||||
Assert.assertTrue(circle != set.copySelf().getHyperplane());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSide() {
|
||||
|
||||
Circle xzPlane = new Circle(Vector3D.PLUS_J, 1.0e-10);
|
||||
|
||||
SubCircle sc1 = create(Vector3D.PLUS_K, Vector3D.PLUS_I, Vector3D.PLUS_J, 1.0e-10, 1.0, 3.0, 5.0, 6.0);
|
||||
Assert.assertEquals(Side.BOTH, sc1.side(xzPlane));
|
||||
|
||||
SubCircle sc2 = create(Vector3D.PLUS_K, Vector3D.PLUS_I, Vector3D.PLUS_J, 1.0e-10, 1.0, 3.0);
|
||||
Assert.assertEquals(Side.MINUS, sc2.side(xzPlane));
|
||||
|
||||
SubCircle sc3 = create(Vector3D.PLUS_K, Vector3D.PLUS_I, Vector3D.PLUS_J, 1.0e-10, 5.0, 6.0);
|
||||
Assert.assertEquals(Side.PLUS, sc3.side(xzPlane));
|
||||
|
||||
SubCircle sc4 = create(Vector3D.PLUS_J, Vector3D.PLUS_K, Vector3D.PLUS_I, 1.0e-10, 5.0, 6.0);
|
||||
Assert.assertEquals(Side.HYPER, sc4.side(xzPlane));
|
||||
|
||||
SubCircle sc5 = create(Vector3D.MINUS_J, Vector3D.PLUS_I, Vector3D.PLUS_K, 1.0e-10, 5.0, 6.0);
|
||||
Assert.assertEquals(Side.HYPER, sc5.side(xzPlane));
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSPlit() {
|
||||
|
||||
Circle xzPlane = new Circle(Vector3D.PLUS_J, 1.0e-10);
|
||||
|
||||
SubCircle sc1 = create(Vector3D.PLUS_K, Vector3D.PLUS_I, Vector3D.PLUS_J, 1.0e-10, 1.0, 3.0, 5.0, 6.0);
|
||||
SplitSubHyperplane<Sphere2D> split1 = sc1.split(xzPlane);
|
||||
ArcsSet plus1 = (ArcsSet) ((SubCircle) split1.getPlus()).getRemainingRegion();
|
||||
ArcsSet minus1 = (ArcsSet) ((SubCircle) split1.getMinus()).getRemainingRegion();
|
||||
Assert.assertEquals(1, plus1.asList().size());
|
||||
Assert.assertEquals(5.0, plus1.asList().get(0).getInf(), 1.0e-10);
|
||||
Assert.assertEquals(6.0, plus1.asList().get(0).getSup(), 1.0e-10);
|
||||
Assert.assertEquals(1, minus1.asList().size());
|
||||
Assert.assertEquals(1.0, minus1.asList().get(0).getInf(), 1.0e-10);
|
||||
Assert.assertEquals(3.0, minus1.asList().get(0).getSup(), 1.0e-10);
|
||||
|
||||
SubCircle sc2 = create(Vector3D.PLUS_K, Vector3D.PLUS_I, Vector3D.PLUS_J, 1.0e-10, 1.0, 3.0);
|
||||
SplitSubHyperplane<Sphere2D> split2 = sc2.split(xzPlane);
|
||||
Assert.assertNull(split2.getPlus());
|
||||
ArcsSet minus2 = (ArcsSet) ((SubCircle) split2.getMinus()).getRemainingRegion();
|
||||
Assert.assertEquals(1, minus2.asList().size());
|
||||
Assert.assertEquals(1.0, minus2.asList().get(0).getInf(), 1.0e-10);
|
||||
Assert.assertEquals(3.0, minus2.asList().get(0).getSup(), 1.0e-10);
|
||||
|
||||
SubCircle sc3 = create(Vector3D.PLUS_K, Vector3D.PLUS_I, Vector3D.PLUS_J, 1.0e-10, 5.0, 6.0);
|
||||
SplitSubHyperplane<Sphere2D> split3 = sc3.split(xzPlane);
|
||||
ArcsSet plus3 = (ArcsSet) ((SubCircle) split3.getPlus()).getRemainingRegion();
|
||||
Assert.assertEquals(1, plus3.asList().size());
|
||||
Assert.assertEquals(5.0, plus3.asList().get(0).getInf(), 1.0e-10);
|
||||
Assert.assertEquals(6.0, plus3.asList().get(0).getSup(), 1.0e-10);
|
||||
Assert.assertNull(split3.getMinus());
|
||||
|
||||
SubCircle sc4 = create(Vector3D.PLUS_J, Vector3D.PLUS_K, Vector3D.PLUS_I, 1.0e-10, 5.0, 6.0);
|
||||
SplitSubHyperplane<Sphere2D> split4 = sc4.split(xzPlane);
|
||||
Assert.assertEquals(Side.HYPER, sc4.side(xzPlane));
|
||||
Assert.assertNull(split4.getPlus());
|
||||
Assert.assertTrue(split4.getMinus() == sc4);
|
||||
|
||||
SubCircle sc5 = create(Vector3D.MINUS_J, Vector3D.PLUS_I, Vector3D.PLUS_K, 1.0e-10, 5.0, 6.0);
|
||||
SplitSubHyperplane<Sphere2D> split5 = sc5.split(xzPlane);
|
||||
Assert.assertTrue(split5.getPlus() == sc5);
|
||||
Assert.assertNull(split5.getMinus());
|
||||
|
||||
}
|
||||
|
||||
private SubCircle create(Vector3D pole, Vector3D x, Vector3D y,
|
||||
double tolerance, double ... limits) {
|
||||
RegionFactory<Sphere1D> factory = new RegionFactory<Sphere1D>();
|
||||
Circle circle = new Circle(pole, tolerance);
|
||||
Circle phased =
|
||||
(Circle) Circle.getTransform(new Rotation(circle.getXAxis(), circle.getYAxis(), x, y)).apply(circle);
|
||||
ArcsSet set = (ArcsSet) factory.getComplement(new ArcsSet(tolerance));
|
||||
for (int i = 0; i < limits.length; i += 2) {
|
||||
set = (ArcsSet) factory.union(set, new ArcsSet(limits[i], limits[i + 1], tolerance));
|
||||
}
|
||||
return new SubCircle(phased, set);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue