]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkLandmarkTransform.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkLandmarkTransform.java
1 // java wrapper for vtkLandmarkTransform object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkLandmarkTransform extends vtkLinearTransform
8 {
9
10   private native int IsTypeOf_0(String id0);
11   public int IsTypeOf(String id0)
12     { return IsTypeOf_0(id0); }
13
14   private native int IsA_1(String id0);
15   public int IsA(String id0)
16     { return IsA_1(id0); }
17
18   private native void SetSourceLandmarks_2(vtkPoints id0);
19   public void SetSourceLandmarks(vtkPoints id0)
20     { SetSourceLandmarks_2(id0); }
21
22   private native void SetTargetLandmarks_3(vtkPoints id0);
23   public void SetTargetLandmarks(vtkPoints id0)
24     { SetTargetLandmarks_3(id0); }
25
26   private native long GetSourceLandmarks_4();
27   public vtkPoints GetSourceLandmarks() {
28     long temp = GetSourceLandmarks_4();
29
30     if (temp == 0) return null;
31     return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetTargetLandmarks_5();
35   public vtkPoints GetTargetLandmarks() {
36     long temp = GetTargetLandmarks_5();
37
38     if (temp == 0) return null;
39     return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetMode_6(int id0);
43   public void SetMode(int id0)
44     { SetMode_6(id0); }
45
46   private native void SetModeToRigidBody_7();
47   public void SetModeToRigidBody()
48     { SetModeToRigidBody_7(); }
49
50   private native void SetModeToSimilarity_8();
51   public void SetModeToSimilarity()
52     { SetModeToSimilarity_8(); }
53
54   private native void SetModeToAffine_9();
55   public void SetModeToAffine()
56     { SetModeToAffine_9(); }
57
58   private native int GetMode_10();
59   public int GetMode()
60     { return GetMode_10(); }
61
62   private native String GetModeAsString_11();
63   public String GetModeAsString()
64     { return GetModeAsString_11(); }
65
66   private native void Inverse_12();
67   public void Inverse()
68     { Inverse_12(); }
69
70   private native int GetMTime_13();
71   public int GetMTime()
72     { return GetMTime_13(); }
73
74   private native long MakeTransform_14();
75   public vtkAbstractTransform MakeTransform() {
76     long temp = MakeTransform_14();
77
78     if (temp == 0) return null;
79     return (vtkAbstractTransform)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
80 }
81
82   public vtkLandmarkTransform() { super(); }
83
84   public vtkLandmarkTransform(long id) { super(id); }
85   public native long   VTKInit();
86
87 }