org.djutils.draw.volume.Volume3d Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of djutils-draw Show documentation
Show all versions of djutils-draw Show documentation
DJUTILS - Delft Java Utilities Drawing and animation primitives
The newest version!
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-2024 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<>();
}
}