eu.mihosoft.vrl.v3d.PrepForManufacturing 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;
public interface PrepForManufacturing {
/**
* THis interface is for objects that will
* convert the modeling orientation of a part
* into whatever CSG orientation and added
* support may be need for manufacturing.
* @param incoming the Incoming CSG
* @return the transformed CSG
*/
public CSG prep(CSG incoming);
}