All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.djutils.draw.volume.Volume3d Maven / Gradle / Ivy

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<>(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy