Muhammad Nor

Muhammad Nor

  • NA
  • 1
  • 7.9k

How to extract data from object graphic

Dec 17 2010 1:54 AM
Hi everyone,

Am still new with C#, please bear with me as I definitely a noob in this language. I need help regarding on WPF viewport3d and how to extract data/properties/children(seriously i dont know much) from the data  I draw using clasess (mesh, geometrymodel3d, geometry3dgroup, modelvisual3d) which contain in cubicBuilder class.

//###############################################

ModelVisual3D _cubic = new ModelVisual3D();

double Lx = 4; //length of cubic.
double Ly = 3; //depth of cubic.
double Lz = 2; //width of cubic.

_cubic = cubicBuilder(Lx,Ly,Lz)
this.mainViewport.Children.Add(_cubic);

//################################################

solid.JPG

as you can see from the pic, I have already drawn the solid. My qquestion would be, how I can get the double value (Lx, Ly, & Lz) of _cubic, from mainViewport after any execution(button click)?  :help: