X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=vtk%2Fsrc%2Fvtk%2FvtkExtractPolyDataGeometry.java;fp=vtk%2Fsrc%2Fvtk%2FvtkExtractPolyDataGeometry.java;h=13b39e59f2b2e3d3bfcb160683b38fbb9ba00900;hb=471c46e9a685e20de958d77166461aebc7a7b6ee;hp=0000000000000000000000000000000000000000;hpb=4daf400d94499ace445cc112af3b9fd7960104c6;p=simantics%2F3d.git diff --git a/vtk/src/vtk/vtkExtractPolyDataGeometry.java b/vtk/src/vtk/vtkExtractPolyDataGeometry.java new file mode 100644 index 00000000..13b39e59 --- /dev/null +++ b/vtk/src/vtk/vtkExtractPolyDataGeometry.java @@ -0,0 +1,71 @@ +// java wrapper for vtkExtractPolyDataGeometry object +// + +package vtk; +import vtk.*; + +public class vtkExtractPolyDataGeometry extends vtkPolyDataAlgorithm +{ + + private native String GetClassName_0(); + public String GetClassName() + { return GetClassName_0(); } + + private native int IsA_1(String id0); + public int IsA(String id0) + { return IsA_1(id0); } + + private native int GetMTime_2(); + public int GetMTime() + { return GetMTime_2(); } + + private native void SetImplicitFunction_3(vtkImplicitFunction id0); + public void SetImplicitFunction(vtkImplicitFunction id0) + { SetImplicitFunction_3(id0); } + + private native long GetImplicitFunction_4(); + public vtkImplicitFunction GetImplicitFunction() { + long temp = GetImplicitFunction_4(); + + if (temp == 0) return null; + return (vtkImplicitFunction)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); + } + + private native void SetExtractInside_5(int id0); + public void SetExtractInside(int id0) + { SetExtractInside_5(id0); } + + private native int GetExtractInside_6(); + public int GetExtractInside() + { return GetExtractInside_6(); } + + private native void ExtractInsideOn_7(); + public void ExtractInsideOn() + { ExtractInsideOn_7(); } + + private native void ExtractInsideOff_8(); + public void ExtractInsideOff() + { ExtractInsideOff_8(); } + + private native void SetExtractBoundaryCells_9(int id0); + public void SetExtractBoundaryCells(int id0) + { SetExtractBoundaryCells_9(id0); } + + private native int GetExtractBoundaryCells_10(); + public int GetExtractBoundaryCells() + { return GetExtractBoundaryCells_10(); } + + private native void ExtractBoundaryCellsOn_11(); + public void ExtractBoundaryCellsOn() + { ExtractBoundaryCellsOn_11(); } + + private native void ExtractBoundaryCellsOff_12(); + public void ExtractBoundaryCellsOff() + { ExtractBoundaryCellsOff_12(); } + + public vtkExtractPolyDataGeometry() { super(); } + + public vtkExtractPolyDataGeometry(long id) { super(id); } + public native long VTKInit(); + +}