I programmed with VC 8.0 and GDI+ im MM_TEXT Mode. If I draw a polygon with the function that accepts REAL's as parameters. It seemce to me that there is still the -32000/+32000 Limit for the coordinates. I have strange effects if I overcome this limit. Ii that true or can be something else wrong ? Thomas
Am 21.07.08 10:10 schrieb "Thomas Freudenreich" unter in z2hu63n2ubac.cvl9renhk45c$.dlg@40tude.net: > I programmed with VC 8.0 and GDI+ im MM_TEXT Mode. If I draw a polygon with > the function that accepts REAL's as parameters. It seemce to me that there > is still the -32000/+32000 Limit for the coordinates. I have strange > effects if I overcome this limit. Ii that true or can be something else > wrong ? > > Thomas Why you use coordinate beyond 32000? I thought internally coordinates are still signed shorts. -- Regards, Christian Sakowski
Am Wed, 23 Jul 2008 11:44:56 +0200 schrieb Christian Sakowski: > Am 21.07.08 10:10 schrieb "Thomas Freudenreich" unter in > z2hu63n2ubac.cvl9renhk45c$.dlg@40tude.net: > >> I programmed with VC 8.0 and GDI+ im MM_TEXT Mode. If I draw a polygon with >> the function that accepts REAL's as parameters. It seemce to me that there >> is still the -32000/+32000 Limit for the coordinates. I have strange >> effects if I overcome this limit. Ii that true or can be something else >> wrong ? >> >> Thomas > > Why you use coordinate beyond 32000? I thought internally coordinates are > still signed shorts. I have long tracks and some parts are on the screen and some are off the screen. Sometimes the track go offscreen but return later. Thats why I can't remove points from it. Was that understandable ?