The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
55 views

MATLAB going from Cart to Pol back to Cart coords for cylindrical plot

1. What I WANT to do: (i) Use input n to generate an n*n cartesian grid [x y] = meshgrid(linspace(-1,1,n)); (ii) Generate polar coordinates [theta r] = cart2pol(x,y); (iii) Evaluate a ...
0
votes
0answers
75 views

Coding of rotational & cylindrical warping for panoramas

My question is regarding code implementation of rotational & cylindrical warping of panoramas. I'm using OpenCV 2.4.0 in C++. After going through some presentations, my understanding is that an ...
1
vote
1answer
89 views

subdivide irregular cylinder into equal volume segments

I was wondering if someone has any ideas how to solve this problem. I have an "irregular" ( meaning diameter is not constant along the length) cylindrical object in 3D. I would like to subdivide this ...
1
vote
2answers
171 views

Merging a Sphere and Cylinder

I want to render a spring using spheres and cylinders. Each Cylinder has two Spheres at each end and all the cylinders are placed along the spring centre line. I could achieve this .. and rendering is ...
0
votes
1answer
46 views

create cylinder with multiple layers on it in gwt [closed]

How to create the cylinder with multiple layers on it in gwt, and what calculation are needed to do that. I want to do the effect same as ...
0
votes
1answer
221 views

Collision detection - response between a moving sphere and a circular cylinder

I'm implementing a simple game that encorporates 3d logic. What is the procedure or/and the relative equations in order to detect if a moving sphere collides with a cylinder? My cylinder is static ...
2
votes
1answer
229 views

three.js - two points, one cylinder, align issue

(new to stackoverflow, new to webgl/three.js, ...) I'm using three.js r54 to plot a force-directed graph. the edges between the nodes are THREE.Lines, which is fine, but lines are not selectable with ...
0
votes
0answers
74 views

Linear programming add weight

I have been tasked with writing a linear program that will tell the user where to add weight onto a cylindrical drum in order to balance the center of gravity. The weights are 2 lbs and 5 lbs, and a ...
1
vote
2answers
251 views

How to plot data on a cylindrical grid using slice?

I have input data on a cylindrical grid and want to plot them using slice in MATLAB. To do this I first transform the reference coordinates into Cartesian coordinates using pol2cart. r = ...
0
votes
0answers
155 views

Image Cylindrical Projection using OpenCV and Python

Hi I wish to know is there anyway for Python to call out cylindrical projection to an image from opencv? Thanks for any reply i really do need help >< PS: I already done image stitching for ...
0
votes
1answer
146 views

paste multiple images on the surface of a cylinder in ios and scroll it

I need a scroll view where multiple images are arranged in a cylindrical manner and on scrolling, the images should revolve like images on a glass cup. The cup should be slightly tilted so that the ...
3
votes
1answer
2k views

Warp Image to Appear in Cylindrical Projection

I want to warp a flat image in a way that it appears to be the projection coming from a cylinder. I have a flat image like this: and I want to show it as something like this in 2D image: I'm a ...
3
votes
1answer
1k views

Matlab 3D plot on Cylindrical Axes

I've run simulations which have given me data points corresponding to X number of different radii, and Y number of angles each one was evaluated at. This means that I have X times Y data points which ...
3
votes
3answers
670 views

cylinder impostor in GLSL

I am developing a small tool for 3D visualization of molecules. For my project i choose to make a thing in the way of what Mr "Brad Larson" did with his Apple software "Molecules". A link where you ...
1
vote
2answers
4k views

How to draw cylinder in y or x axis in opengl

I just want to draw a cylinder in opengl. I found lots of samples but all of them draws cylinders in z axis. I want them be in x or y axis. How can i do this. The code below is the code draw the ...
2
votes
1answer
606 views

How to texture a cylinder in XNA4 with multiple textures?

Basically, I'm trying to cover a slot machine reel (white cylinder model) with multiple evenly spaced textures around the exterior. The program will be Windows only and the textures will be ...
5
votes
1answer
388 views

How do I get RMagick to wrap images around a cylinder?

I'm trying to wrap an image around a cylinder in RMagick (ImageMagick) and am having a tough time. There are several types of distortions (Barrel, Arc, Affine, etc.) that seem to be a good start but ...
0
votes
1answer
615 views

Maple: How to convert Cylindrical coordinates to Cartesian coordinates?

We get some expression in Cylindrical coordinates (r, ϕ, z ) like : expr := r*z^2*sin((1/3)*ϕ) we need to convert it into Cartesian coordinates and than back to Cylindrical coordinates. ...