1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
using Kitware.VTK;
using System;
// input file is C:\VTK\Parallel\Testing\Tcl\TestCutMaterial.tcl
// output file is AVTestCutMaterial.cs
/// <summary>
/// The testing class derived from AVTestCutMaterial
/// </summary>
public class AVTestCutMaterialClass
{
/// <summary>
/// The main entry method called by the CSharp driver
/// </summary>
/// <param name="argv"></param>
public static void AVTestCutMaterial(String [] argv)
{
//Prefix Content is: ""
// Lets create a data set.[]
data = new vtkImageData();
data.SetExtent((int)0,(int)31,(int)0,(int)31,(int)0,(int)31);
data.SetScalarTypeToFloat();
// First the data array:[]
gauss = new vtkImageGaussianSource();
gauss.SetWholeExtent((int)0,(int)30,(int)0,(int)30,(int)0,(int)30);
gauss.SetCenter((double)18,(double)12,(double)20);
gauss.SetMaximum((double)1.0);
gauss.SetStandardDeviation((double)10.0);
gauss.Update();
a = gauss.GetOutput().GetPointData().GetScalars();
a.SetName((string)"Gauss");
data.GetCellData().SetScalars((vtkDataArray)a);
//skipping Delete gauss
// Now the material array:[]
ellipse = new vtkImageEllipsoidSource();
ellipse.SetWholeExtent((int)0,(int)30,(int)0,(int)30,(int)0,(int)30);
ellipse.SetCenter((double)11,(double)12,(double)13);
ellipse.SetRadius((double)5,(double)9,(double)13);
ellipse.SetInValue((double)1);
ellipse.SetOutValue((double)0);
ellipse.SetOutputScalarTypeToInt();
ellipse.Update();
m = ellipse.GetOutput().GetPointData().GetScalars();
m.SetName((string)"Material");
data.GetCellData().AddArray((vtkAbstractArray)m);
//skipping Delete ellipse
cut = new vtkCutMaterial();
cut.SetInput((vtkDataObject)data);
cut.SetMaterialArrayName((string)"Material");
cut.SetMaterial((int)1);
cut.SetArrayName((string)"Gauss");
cut.SetUpVector((double)1,(double)0,(double)0);
cut.Update();
mapper2 = vtkPolyDataMapper.New();
mapper2.SetInputConnection((vtkAlgorithmOutput)cut.GetOutputPort());
mapper2.SetScalarRange((double)0,(double)1);
//apper2 SetScalarModeToUseCellFieldData[]
//apper2 SetColorModeToMapScalars []
//apper2 ColorByArrayComponent "vtkGhostLevels" 0[]
actor2 = new vtkActor();
actor2.SetMapper((vtkMapper)mapper2);
actor2.SetPosition((double)1.5,(double)0,(double)0);
ren = vtkRenderer.New();
ren.AddActor((vtkProp)actor2);
renWin = vtkRenderWindow.New();
renWin.AddRenderer((vtkRenderer)ren);
p = cut.GetCenterPoint();
n = cut.GetNormal();
cam = ren.GetActiveCamera();
cam.SetFocalPoint(p[0],p[1],p[2]);
cam.SetViewUp(cut.GetUpVector()[0], cut.GetUpVector()[1], cut.GetUpVector()[2]);
cam.SetPosition(
(double)(lindex(n,0))+(double)(lindex(p,0)),
(double)(lindex(n,1))+(double)(lindex(p,1)),
(double)(lindex(n,2))+(double)(lindex(p,2)));
ren.ResetCamera();
iren = vtkRenderWindowInteractor.New();
iren.SetRenderWindow(renWin);
iren.Initialize();
//deleteAllVTKObjects();
}
static string VTK_DATA_ROOT;
static int threshold;
static vtkImageData data;
static vtkImageGaussianSource gauss;
static vtkDataArray a;
static vtkImageEllipsoidSource ellipse;
static vtkDataArray m;
static vtkCutMaterial cut;
static vtkPolyDataMapper mapper2;
static vtkActor actor2;
static vtkRenderer ren;
static vtkRenderWindow renWin;
static vtkRenderWindowInteractor iren;
static double[] p;
static double[] n;
static vtkCamera cam;
/// <summary>
/// Returns the variable in the index [i] of the System.Array [arr]
/// </summary>
/// <param name="arr"></param>
/// <param name="i"></param>
public static Object lindex(System.Array arr, int i)
{
return arr.GetValue(i);
}
/// <summary>
/// Returns the variable in the index [index] of the array [arr]
/// </summary>
/// <param name="arr"></param>
/// <param name="index"></param>
public static double lindex(IntPtr arr, int index)
{
double[] destination = new double[index + 1];
System.Runtime.InteropServices.Marshal.Copy(arr, destination, 0, index + 1);
return destination[index];
}
/// <summary>
/// Returns the variable in the index [index] of the vtkLookupTable [arr]
/// </summary>
/// <param name="arr"></param>
/// <param name="index"></param>
public static long lindex(vtkLookupTable arr, double index)
{
return arr.GetIndex(index);
}
/// <summary>
/// Returns the substring ([index], [index]+1) in the string [arr]
/// </summary>
/// <param name="arr"></param>
/// <param name="index"></param>
public static int lindex(String arr, int index)
{
string[] str = arr.Split(new char[]{' '});
return System.Int32.Parse(str[index]);
}
/// <summary>
/// Returns the index [index] in the int array [arr]
/// </summary>
/// <param name="arr"></param>
/// <param name="index"></param>
public static int lindex(int[] arr, int index)
{
return arr[index];
}
/// <summary>
/// Returns the index [index] in the float array [arr]
/// </summary>
/// <param name="arr"></param>
/// <param name="index"></param>
public static float lindex(float[] arr, int index)
{
return arr[index];
}
/// <summary>
/// Returns the index [index] in the double array [arr]
/// </summary>
/// <param name="arr"></param>
/// <param name="index"></param>
public static double lindex(double[] arr, int index)
{
return arr[index];
}
///<summary> A Get Method for Static Variables </summary>
public static string GetVTK_DATA_ROOT()
{
return VTK_DATA_ROOT;
}
///<summary> A Set Method for Static Variables </summary>
public static void SetVTK_DATA_ROOT(string toSet)
{
VTK_DATA_ROOT = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static int Getthreshold()
{
return threshold;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setthreshold(int toSet)
{
threshold = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkImageData Getdata()
{
return data;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setdata(vtkImageData toSet)
{
data = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkImageGaussianSource Getgauss()
{
return gauss;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setgauss(vtkImageGaussianSource toSet)
{
gauss = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkDataArray Geta()
{
return a;
}
///<summary> A Set Method for Static Variables </summary>
public static void Seta(vtkDataArray toSet)
{
a = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkImageEllipsoidSource Getellipse()
{
return ellipse;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setellipse(vtkImageEllipsoidSource toSet)
{
ellipse = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkDataArray Getm()
{
return m;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setm(vtkDataArray toSet)
{
m = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkCutMaterial Getcut()
{
return cut;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setcut(vtkCutMaterial toSet)
{
cut = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkPolyDataMapper Getmapper2()
{
return mapper2;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setmapper2(vtkPolyDataMapper toSet)
{
mapper2 = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkActor Getactor2()
{
return actor2;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setactor2(vtkActor toSet)
{
actor2 = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkRenderer Getren()
{
return ren;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setren(vtkRenderer toSet)
{
ren = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkRenderWindow GetrenWin()
{
return renWin;
}
///<summary> A Set Method for Static Variables </summary>
public static void SetrenWin(vtkRenderWindow toSet)
{
renWin = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static double[] Getp()
{
return p;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setp(double[] toSet)
{
p = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static double[] Getn()
{
return n;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setn(double[] toSet)
{
n = toSet;
}
///<summary> A Get Method for Static Variables </summary>
public static vtkCamera Getcam()
{
return cam;
}
///<summary> A Set Method for Static Variables </summary>
public static void Setcam(vtkCamera toSet)
{
cam = toSet;
}
///<summary>Deletes all static objects created</summary>
public static void deleteAllVTKObjects()
{
//clean up vtk objects
if(data!= null){data.Dispose();}
if(gauss!= null){gauss.Dispose();}
if(a!= null){a.Dispose();}
if(ellipse!= null){ellipse.Dispose();}
if(m!= null){m.Dispose();}
if(cut!= null){cut.Dispose();}
if(mapper2!= null){mapper2.Dispose();}
if(actor2!= null){actor2.Dispose();}
if(ren!= null){ren.Dispose();}
if(renWin!= null){renWin.Dispose();}
if (iren != null) { iren.Dispose(); }
}
}
//--- end of script --//
|