Interesting idea. :-)
Do you have an example demonstrating it's usage and maybe a screenshot
of expected results. I ported that unit to fpGUI, but ain't sure if I am
seeing the correct results.
Regards,
- Graeme -
_______________________________________________________
fpGUI - a cross-platform GUI toolkit using Free Pascal
http://opensoft.homeip.net/fpgui/
>>and maybe a screenshot of expected results. I ported that unit to fpGUI,
but ain't sure if I am seeing the correct results.
I'm working on integration within a TPaintBox...
DH
procedure TMyPaintbox.Paint;
begin
inherited;
with TCanvas3D.Create(self.Canvas)
do begin
ViewWidth := self.Width;
ViewHeight := self.Height;
Pen.Color := clBlue;
Origin.X := self.Width div 2;
Origin.Y := self.Height div 2;
Sphere( 0, 0, 0, // center at origin
50, // width
25, // steps Horiz
25 // steps Vert
);
Free;
end;
end;
"Graeme Geldenhuys" <gra...@spamfilter.co.za> a écrit dans le message de
news:4857b0c6$1...@newsgroups.borland.com...