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

eu.mihosoft.vrl.v3d.IExtrusion Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy