Class AcadExtrusionCalculator
- java.lang.Object
-
- org.hortonmachine.gears.io.dxfdwg.libs.dwg.utils.AcadExtrusionCalculator
-
public class AcadExtrusionCalculator extends Object
This class allows to apply the extrusion transformation of Autocad given by an array of doubles to a point given by an array of doubles too. The result of this transformation is a Point2D- Author:
- jmorell
-
-
Constructor Summary
Constructors Constructor Description AcadExtrusionCalculator()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static double[]CalculateAcadExtrusion(double[] coord_in, double[] xtru)Method that allows to apply the extrusion transformation of Autocad
-
-
-
Method Detail
-
CalculateAcadExtrusion
public static double[] CalculateAcadExtrusion(double[] coord_in, double[] xtru)Method that allows to apply the extrusion transformation of Autocad- Parameters:
coord_in- Array of doubles that represents the input coordinatesxtru- array of doubles that contanins the extrusion parameters- Returns:
- double[] Is the result of the application of the extrusion transformation to the input point
-
-