What was your method?
clearlistener() maxfile = “d:\wine.max” file = fopen maxfile “r” for i=1 to 100 do ( str = ReadByte file print str ) fclose file also it is possible…
you have to use fopen, and then read it in either binary or text mode. I think the best if you convert-read the part you need into a stringstream and …
it does read only the first 8 chars… HMm, trying to find it out why.
Hej I am looking into it. I think you have to open the file in binary mode “rb”. And then search in it, and then readline. I’ll check it out.
open a max file as a filestream or stringstream and search in it. Otherwise I don’t know any other way. Somebody else may know.
if possible and you know the structure of max file you could probably get out of any data. Even by just searching for the keywords. If nothing else th…
in the last pot basically what you talking about is a spline simplification, nothing more. I dont understand how your first post and the images connec…
in my understanding there are points in which trough you need to have a bezier spline. This is your target. This is your end result. Am I right? now,…
hmm, I dont know, is that possible that you build an other type of curve and then convert it to bezier? Because in some other type of curves the point…
well, after trying out several methods I made an algorithm to correct the segments size based on sinus(angle) and the Major and minor axis. This creat…
Damn, I should have read the doc too, struggled with it for some time…