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