Test2.java

  1. package org.opentrafficsim.core.geometry;

  2. import org.opentrafficsim.core.network.NetworkException;

  3. /**
  4.  * <p>
  5.  * Copyright (c) 2013-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
  6.  * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
  7.  * </p>
  8.  * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
  9.  * initial version Dec 4, 2015 <br>
  10.  * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
  11.  * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
  12.  */
  13. public final class Test2
  14. {

  15.     /** This class should never be instantiated. */
  16.     private Test2()
  17.     {
  18.         // This class cannot be instantiated.
  19.     }

  20.     /**
  21.      * @param args args
  22.      * @throws NetworkException on error
  23.      * @throws OTSGeometryException on error
  24.      */
  25.     public static void main(final String[] args) throws NetworkException, OTSGeometryException
  26.     {
  27.         OTSLine3D reference = new OTSLine3D(new OTSPoint3D(5, -1, 1), new OTSPoint3D(5, -2, 1), new OTSPoint3D(4.9, -2.01, 1),
  28.                 new OTSPoint3D(5.1, -2.03, 1), new OTSPoint3D(5, -2.04, 1), new OTSPoint3D(5, -6, 1),
  29.                 new OTSPoint3D(4.9, -6.01, 1), new OTSPoint3D(5.1, -6.03, 1), new OTSPoint3D(5, -6.04, 1),
  30.                 new OTSPoint3D(5, -7.04, 1));

  31.         System.out.println("#reference: " + reference.toString());
  32.         OTSLine3D right = OTSOffsetLinePK.offsetLine(reference, -2);
  33.         System.out.println("#right: " + right.toString());
  34.         OTSLine3D left = reference.offsetLine(2);
  35.         System.out.println("#left: " + left.toString());

  36.         reference = new OTSLine3D(new OTSPoint3D(10, 0.5, 0), new OTSPoint3D(10, -2, 0), new OTSPoint3D(9.9, -2.01, 0),
  37.                 new OTSPoint3D(10.1, -2.03, 0), new OTSPoint3D(10, -2.04, 0), new OTSPoint3D(10, -6, 0),
  38.                 new OTSPoint3D(9.9, -6.01, 0), new OTSPoint3D(10.1, -6.03, 0), new OTSPoint3D(10, -6.04, 0),
  39.                 new OTSPoint3D(10, -8.54, 0));

  40.         System.out.println("#reference: " + reference.toString());
  41.         right = reference.offsetLine(-2);
  42.         System.out.println("#right: " + right.toString());
  43.         left = reference.offsetLine(2);
  44.         System.out.println("#left: " + left.toString());

  45.     }

  46. }