package org.djutils.draw.volume; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import org.djutils.draw.line.PolyLine3d; /** * Volume3d.java. *

* Copyright (c) 2020-2021 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See DJUTILS License. *

* @author Alexander Verbraeck * @author Peter Knoppers */ public class Volume3d implements Serializable { /** */ private static final long serialVersionUID = 1L; /** * Return the lines making up the wireframe of this object. * @return List<Line>; the A list of lines making up the wireframe of the object */ public List getWireframeLines() { // TODO program return new ArrayList<>(); } }