wireframe width of draw3d
Posted: Sat May 16, 2009 8:47 am
TeeChart Pro 8.04
C++ Builder 2007
TeeOpenGL-DrawStyle = tcsWire
I draw some Cylinders on TDraw3D.
Draw3D1->Canvas->Pen-Width = 1;
Draw3D1->Canvas->Cylinder(....)
this is ok.
but,
Draw3D1->Canvas->Pen-Width = 1;
Draw3D1->Canvas->Cylinder(....)
Draw3D1->Canvas->Pen-Width = 5;
Draw3D1->Canvas->MoveTo3D(...);
Draw3D1->Canvas->LineTo3D(...)
after rotate cylinder, wire width is thicked.
so,
Draw3D1->Canvas->Pen-Width = 1;
Draw3D1->Canvas->Cylinder(....)
Draw3D1->Canvas->Pen-Width = 5;
Draw3D1->Canvas->MoveTo3D(...);
Draw3D1->Canvas->LineTo3D(...)
Draw3D1->Canvas->Pen-Width = 1;
this is also same.
How to change wire width?
C++ Builder 2007
TeeOpenGL-DrawStyle = tcsWire
I draw some Cylinders on TDraw3D.
Draw3D1->Canvas->Pen-Width = 1;
Draw3D1->Canvas->Cylinder(....)
this is ok.
but,
Draw3D1->Canvas->Pen-Width = 1;
Draw3D1->Canvas->Cylinder(....)
Draw3D1->Canvas->Pen-Width = 5;
Draw3D1->Canvas->MoveTo3D(...);
Draw3D1->Canvas->LineTo3D(...)
after rotate cylinder, wire width is thicked.
so,
Draw3D1->Canvas->Pen-Width = 1;
Draw3D1->Canvas->Cylinder(....)
Draw3D1->Canvas->Pen-Width = 5;
Draw3D1->Canvas->MoveTo3D(...);
Draw3D1->Canvas->LineTo3D(...)
Draw3D1->Canvas->Pen-Width = 1;
this is also same.
How to change wire width?