Hmm, im running into an interesting thing here. I don't know if it's an error, but if anyone knows why this is happening i'd appreciate it.
make object sphere 1000, 1
make mesh from object 1000,1000
make memblock from mesh 1,1000
delete object 1000
delete mesh 1000
mem_pos=12
total#= memblock dword(1,8)
do
mem_pos=12
print total#
for a=1 to 827
x#=memblock float(1, mem_pos)*50+100
inc mem_pos, 4
y#= memblock float(1,mem_pos)*50+100
inc mem_pos,32
dot x#,y#
next a
loop
this code makes a sphere, turns it into a memblock, and then gets the x and y values only and pastes them on the screen. What interests me is that there appears to be some "Outliers" in the image. It should be a series of points that form the rough shape of a circle, but instead some points are outside the "Circle"
Also, the third float is supposed to be the number of vertexes in the model. The number i retrieve from
total= memblock dword(1,8)
is 930
The value i recieved through trial and error is 827 vertices.