I have drawings (arrays of points with x and y coordinates) that are rotated in 3d space: http://www.motiondraw.com/md/as_samples/Testing/_mindreader/main.html

As it is now, the drawing looks as if wrapped around a cube, with a nasty 90° degree in the corner. Instead it should look as if it were wrapped around a cylinder. Before starting the rotation I call a function (in ActionScript) 'bendDrawing' that for each point sets an initial z-value:

for (var j = 0; j < numPoints; j++ ) {
// drawings are centered – points left of center are < 0 var distFromCenter = Math.abs(shape[i].points[j].x);

var wid = 350;// this could be the radius of the cylinder

// NOTE: suboptimal, as the image gets a 90° corner in the center, at its highest point
// what it should look like: as if the image was wrapped around a cylinder, i.e. in a circular shape
// is that pythagoras? draw triangle, calc distance from base, add to this to c?
var z = wid - distFromCenter;

shape[i].points[j].z =  Math.abs( z);

}

I just can't wrap my head around this ;-) Any pointers much appreciated!

Andreas Weber

link|improve this question
You might want to look up cylindrical co-ordinate systems, and their projections. – soandos May 12 '11 at 4:30
feedback

1 Answer

try this:

shape[i].points[j].z  = 
    wid * Math.cos((shape[i].points[j].x / wid) * (0.5 * Math.PI));
link|improve this answer
shape[i].points[j].z = wid * Math.cos((shape[i].points[j].x / wid) * (0.5 * Math.PI)); Works like a spell - this is exactly what I needed. Thanks a lot! – Andreas Weber May 12 '11 at 9:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.