Drawing Donuts

Discuss and ask questions about CAD VCL (Delphi and C++ Builder).

Moderators: SDS, support, admin

Post Reply
aby
Posts: 81
Joined: 21 May 2007, 13:02
Location: Turkey

Drawing Donuts

Post by aby » 19 Nov 2009, 16:21

Hi,

Is it posible to create donuts with this library?

If yes could you post an example .

Thanks

Aby

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Drawing Donuts

Post by support » 20 Nov 2009, 17:12

Hello Aby.

Code: Select all

var
  Im: TsgCADImage;
  Poly: TsgDXFLWPolyLine;
  Vertex: TsgDXFVertex;

begin
  Im := TsgCADImage(sgPaintBox.Picture.Graphic);

  Poly := TsgDXFLWPolyLine.Create;
  Poly.Closed := true;
  Poly.GlobalWidth := 200;
  Poly.Color := clGreen;

  Vertex := TsgDXFVertex.Create;
  Vertex.Point := MakeFPoint(0, 0, 0);
  Vertex.Bulge := 1;
  Poly.AddEntity(Vertex);

  Vertex := TsgDXFVertex.Create;
  Vertex.Point := MakeFPoint(500, 500, 0);
  Vertex.Bulge := 1;
  Poly.AddEntity(Vertex);
  AddEntity(Im.Converter, Poly);

  Im.GetExtents;
  sgPaintBox.Refresh;
Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

aby
Posts: 81
Joined: 21 May 2007, 13:02
Location: Turkey

Re: Drawing Donuts

Post by aby » 20 Nov 2009, 18:19

What is sgPaintBox ?

Thanks

Aby

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Drawing Donuts

Post by support » 23 Nov 2009, 11:15

sgPaintBox is the object of TsgDrawingNavigator class. Please pay attention to sgPaintBox and TsgCADImage must be initialized before. Please see our demo source code.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

aby
Posts: 81
Joined: 21 May 2007, 13:02
Location: Turkey

Re: Drawing Donuts

Post by aby » 23 Nov 2009, 13:26

"sgPaintBox is the object of TsgDrawingNavigator class. Please pay attention to sgPaintBox and TsgCADImage must be initialized before. Please see our demo source code."

How on earth can you pay attention on sgPaintBox if you don't have any information about it, unless you have super natural powers.

Is there any new documentation or notifying on what's new that there is a new sgPaintBox Control on the shelf you can use it.

I've searched the old documentation and demo source code. I can't find anything that refers to sgPaintBox.

Any way from what I examine your new source code there is plenty methods related to sgPaintBox. Please document this control on your help file.

Thanks

Aby

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Drawing Donuts

Post by support » 23 Nov 2009, 15:52

How on earth can you pay attention on sgPaintBox if you don't have any information about it, unless you have super natural powers.
Is there any new documentation or notifying on what's new that there is a new sgPaintBox Control on the shelf you can use it
may be I have super natural powers, wow :) . No, of cause, because
sgPaintBox is the object of TsgDrawingNavigator class
Rename sgPaintBox in your code to any name you like. It's only a name. And it can't have any documentation because documentation related to TsgDrawingNavigator class (but not object of the class).
You don't need to rename or modify anything in the "creation donut" sample if you will use it within the AddEntity demo.

Alexander
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply