View Javadoc
1   package org.djutils.draw.volume;
2   
3   import java.io.Serializable;
4   import java.util.ArrayList;
5   import java.util.List;
6   
7   import org.djutils.draw.line.PolyLine3d;
8   
9   /**
10   * Volume3d.java.
11   * <p>
12   * Copyright (c) 2020-2021 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
13   * BSD-style license. See <a href="https://djutils.org/docs/current/djutils/licenses.html">DJUTILS License</a>.
14   * </p>
15   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
16   * @author <a href="https://www.tudelft.nl/pknoppers">Peter Knoppers</a>
17   */
18  public class Volume3d implements Serializable
19  {
20      /** */
21      private static final long serialVersionUID = 1L;
22  
23      /**
24       * Return the lines making up the wireframe of this object.
25       * @return List&lt;Line&gt;; the A list of lines making up the wireframe of the object
26       */
27      public List<PolyLine3d> getWireframeLines()
28      {
29          // TODO program
30          return new ArrayList<>();
31      }
32  
33  }