Dear all,
I'd like to draw a Point3D series like it is drawn in 2D.
Currently if I turn the chart (Rotate Tool) the points are drawn as ellipses with perspective deformation applied to them.
I'd like to see them as simple circle from all views.
Best would be to have "bubbles" or "balls" like it is 3D - but simple circles are good as well.
a few pictures to demonstrate it:
Scaling the points by depth would be OK but not necessary.
Thanks for any ideas !
Drawing Point3D series without perspective in FullRotation
-
- Newbie
- Posts: 12
- Joined: Mon Feb 17, 2014 12:00 am
Drawing Point3D series without perspective in FullRotation
- Attachments
-
- Points as ellipses
- Flange2.png (153.82 KiB) Viewed 9046 times
-
- View of Points like circles
- Flange1.png (157.91 KiB) Viewed 9049 times
Re: Drawing Point3D series without perspective in FullRotation
Hello,
Have you tried activating OpenGL?
Have you tried activating OpenGL?
Code: Select all
uses TeeOpenGL;
//...
var OpenGL1: TTeeOpenGL;
//...
OpenGL1:=TTeeOpenGL.Create(Self);
OpenGL1.TeePanel:=Chart1;
OpenGL1.Active:=true;
Series1.Pointer.Style:=psCircle;
Series1.Pointer.Pen.Visible:=false;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 12
- Joined: Mon Feb 17, 2014 12:00 am
Re: Drawing Point3D series without perspective in FullRotation
Hi Yeray,
unfortunately OpenGL has some different problems.
It was not realy looking nice (last time I looked at it) and TNearestTool for selecting a Point is not working correctly.
Currently I would like to do it with the normal 3D chart GDI+/GDI
unfortunately OpenGL has some different problems.
It was not realy looking nice (last time I looked at it) and TNearestTool for selecting a Point is not working correctly.
Currently I would like to do it with the normal 3D chart GDI+/GDI
Re: Drawing Point3D series without perspective in FullRotation
Hello Christian,
All the coordinates are transformed to the 3D perspective and I'm afraid it isn't straightforward to modify this process to only do a part of these calculations.
I see you own the sources, so you are free to give it a try to modify them according to your needs.
Also, this could be a good enhancement for the wish list. You can create a ticket yourself.
All the coordinates are transformed to the 3D perspective and I'm afraid it isn't straightforward to modify this process to only do a part of these calculations.
I see you own the sources, so you are free to give it a try to modify them according to your needs.
Also, this could be a good enhancement for the wish list. You can create a ticket yourself.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 12
- Joined: Mon Feb 17, 2014 12:00 am
Re: Drawing Point3D series without perspective in FullRotation
Hi Yeray,
I just did as you suggested.
I did 3 modifications to 3 files - if you like I can send them to you.
Maybe you could include a property to switch this behaviour in future releases - as it helps me a lot not to modify the sources on each update.
Best regards
Christian Ziegelt
I just did as you suggested.
I did 3 modifications to 3 files - if you like I can send them to you.
Maybe you could include a property to switch this behaviour in future releases - as it helps me a lot not to modify the sources on each update.
Best regards
Christian Ziegelt
Re: Drawing Point3D series without perspective in FullRotation
Hello Christian,
We'll be glad to take a look at your modifications and try to introduce them into the sources.
You can post the files at our upload page, and please tell us after doing it.
We'll be glad to take a look at your modifications and try to introduce them into the sources.
You can post the files at our upload page, and please tell us after doing it.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |