eu.mihosoft.vrl.v3d.IExtrusion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JavaCad Show documentation
Show all versions of JavaCad Show documentation
A Java based CSG Cad library
package eu.mihosoft.vrl.v3d;
import java.util.List;
public interface IExtrusion {
/**
* Extrusion interface for writing extrusion strategy scripts
* @param dir
* @param points
* @return
*/
CSG extrude(Vector3d dir, List points) ;
/**
* Extrude.
*
* @param dir
* the dir
* @param polygon1
* the polygon1
* @return the csg
*/
CSG extrude(Vector3d dir, Polygon polygon1);
}