0
votes
1answer
92 views

XNA - How to draw lines in world space?

I'm working on an A* algorithm, and I'd like to be able to draw lines between the nodes in the path-finding graph, especially those leading to the exit. The environment I'm working in is 3D. I just ...
0
votes
1answer
166 views

3D points projected to form an image

I want your intellectual suggestions for a problem i have. I have 3D points data along with intensity field (x,y,z,I) which represent the 3D scene. I want this 3D data converted into an image (2D ...
0
votes
1answer
356 views

Change perpective angle/origin 3d-css on mouse move

I'm trying to get the perspective view-angle with the following, of a cube: http://jsfiddle.net/TrySpace/JvFSQ/5/ But I doesn't do what I expected, I want the actual view-angle to be changed. So ...
2
votes
1answer
170 views

Core Animation: moving a layer along a plane

I am working on a card game where cards are shown lying on a table with perspective. The table and cards both have the same x rotation (45°). As the cards get farther away from the player (move "up" ...
1
vote
0answers
61 views

Img change while mouse move inside div containing it

I have prerender image sequance 3d scene, so i want to create something like in Flash, i want my picture changes then mouse move, if i moving left, image number goes up, if i moving right image number ...
0
votes
1answer
118 views

Camera distance for 3D object

Assuming I have a 3D object. I have no detailed information about the form of the object, the only information I have is the ranges of the 3 axis coordinates (the min/max x-coordinate etc.). Given a ...
2
votes
1answer
338 views

Perspective projection with multiple 3D objects on different depths in Python

For my personal project I need to: Produce a perspective projection from a 3D objet to a 2D plane (on a point defined in the space, which will be the camera). Get the exact area/points coordinates ...
0
votes
1answer
240 views

The Projection Of The CALayer Rotation

A Layer, with frame {0,0,w,h}, backgroundColor red,anchorPoint at {0,0.5}, transform.m34 = -1.0/1800, and set the position at {0,0}, then rotate it with a angle along the y , ...
2
votes
1answer
140 views

CSS3 Second 3D Perspective

Hello guys I have a map like this http://sinanisler.com/demo/map/ and as you can see there is some trees but not true perspective ı want this http://sinanisler.com/demo/musteri/uploads/res.png ...
-1
votes
2answers
271 views

OpenGL perspective x-y-coordinates to orhogonal

Let's say that I have a perspective view in OpenGL and choose a point at a given depth. Let's say that it's at z=-10. How do I know which actual x- and y-coordinates this point have? It is easy when ...
0
votes
2answers
526 views

3D Perspective Projection doesn't look right

I have been using the 3D perspective projection formula: sx = wx*scale/wz sy = wy*scale/wz It projects things sort-of alright, but for example a cube looks more like a rectangular prism and is ...
1
vote
1answer
1k views

css 3d perspective not showing up correctly in certain browsers

I have a bunch of images I've set up in css to appear as a 3d stack. It shows up correctly in Safari all the time (pc or mac) but only sometimes in Chrome. I haven't put in the Moz stuff so it ...
1
vote
1answer
548 views

Projecting 3D Points to 2D Points

I know this is a common question and there are oodles of resources on the web and several questions here handling this area but I can't find exactly what I need. So, with apologies in advance, here ...
1
vote
1answer
162 views

Mapping Onscreen Points to 3D Real Location

The specific name of what I am trying to do is "unproject" = to map a screen point to the 3D world. So I found this site which has simple equations for mapping 3D coordinates to a 2D screen: ...
0
votes
1answer
386 views

3D Vertices To 2D Image Conversion

All I would like to do is create a viewport which maps a 3D terrain of flat squares to a 2D perspective. Imagine looking out across a field which was perfectly flat. The further away blocks of ...
2
votes
1answer
916 views

Flash ActionScript 3 - Draw static 3D cube

I'm trying to draw a 10x10 grid with Actionscript 3 with a vanishing point behind - so each square looks like it's coming towards the screen (each from its own relative perspective). I've found many ...
0
votes
1answer
724 views

Projection Matrix

I tried to understand the mathematics behind the projection matrix and I found this page. The matrix from this page: I found this matrix is similar to the matrix of Xna. I understood how they got ...
1
vote
1answer
350 views

Webkit 3D perspective bugs

I'm playing around with browsers lately, and now I'm fighting with 3D. WebGL is awesome, and I can do 3D in CSS3 too? Even better! Ok, so my vision was to create floating 3D objects using nested ...
1
vote
2answers
252 views

3d perspective viewing

I am trying to mess around with rendering things in 3d. I want to make it so that if you are looking straight at a building, you see the front. If you walk to the side and turn you will see both the ...
0
votes
0answers
265 views

Perspective vs. orthogonal positioning Glscene, Camera

i have a realy huge problem (for me). I display some tooth im my 3d Glscene World. The positions of the tooth are saved in an extra db and the program load this positions at start of the 3d-scene. ...
2
votes
1answer
600 views

Position fixed within parent that has -webkit-perspective

I am implementing a 3D interface using jQuery Isotope and Infinite Scrolling. The Loading message for the infinite scrolling should be position: fixed. However, because its parent has a ...
0
votes
1answer
119 views

Curve turning into right angle

I'm drawing a 3D solar system and have successfully plotted lines for the orbits. However when I am positioned close to the planet the nearest points of the orbit form a right angle making the orbit ...
1
vote
1answer
513 views

How vanishing points can help in restoring proper camera perspective?

I'm trying to insert 3D object into a photo, that was not taken by me. Meta info is erased, so I can only guess camera parameters and dimensions of the objects in the scene. How can I set proper ...
1
vote
2answers
2k views

Basics of 3d to draw Rubik's Cube

I'd like to draw a Rubik's Cube on html canvas element with some perspective, but I've never had any experience with 3d graphics, perspective etc. so I'm looking for all helpful resources to achieve ...
0
votes
2answers
1k views

How do you do a 3D transform (perspective) in C# or VB.Net?

What I am looking to do sounds really simple, but no where on the Internet so far have I found a way to do this in DotNet nor found a 3rd party component that does this either (without spending ...
1
vote
1answer
339 views

Perspective projection of an object on a plane in 3D

Imagine there is plane in between a virtual person and an object. The object is a box with a certain xyz scaling and rotation. The plane is like a glass window. The person is looking at the object ...
1
vote
1answer
738 views

3D Projection Issue: Z Value doesn't lie in [1,-1] after Perspective Divide

I'm trying to do a simple perspective projection in the process of rasterizing a 3D point. Here are all the matrices and other info. All Matrices are row major. The coordinate system is Right Handed. ...
1
vote
1answer
471 views

Depth interpolation for surface removal with perspective projection

This seems like a question for which an answer should readily available on the web or books but my quest for an answer has led me so far only to blind alleys that turned out to be dead ends. I'm ...
4
votes
1answer
556 views

WP7 Perspective Transforming (3D Matrix vs PlaneProjection)

I was taking a look at this app: http://www.ztitch.com/index.html and was wondering how they did all of the 3D stuff... It doesn't look like he is using the built in 3D rotations (PlaneProjection) in ...
1
vote
5answers
1k views

Mapping a 3D rectangle to a 2D screen

I've searched SO but I just can't figure this out. The other questions didn't help or I didn't understand them. The problem is, I have a bunch of points in a 3D image. The points are for a rectangle, ...
1
vote
1answer
1k views

Perspective 3D Projection in Java

I'm working on creating a simple 3D rendering engine in Java. I've messed about and found a few different ways of doing perspective projection, but the only one I got partly working had weird ...
0
votes
1answer
460 views

WP7: 3D Perspective Camera Depth Effect

Lets say I have a Canvas with one Image centered on the screen. When I move the image away from the center, lets say to the upper right corner, I want it to be skewed as if the Canvas was a ...
2
votes
2answers
263 views

Practical method of putting circular shapes into perspective?

Not entirely sure if this should belong on Stack Overflow, but here goes. I'm creating a simple version of tic-tac-toe in 3D using the HTML5 <canvas> object. The first player uses the cross ...
2
votes
1answer
568 views

Finding OpenGL image plane coordinates

I am trying to implement a raytracer that uses an arbitrary camera position and perspective projection. I have the camera position, the look at position, the angle of field of view, but I cannot ...
2
votes
2answers
467 views

OpenGl box fullscreen

I'd like to draw the inside of a box fullscreen (i.e. it should completely fill the viewport) using OpenGL. The box should have perspective. I presume I'll have to change the dimensions of the box ...
1
vote
1answer
228 views

If a world matrix and camera matrix are both identity matrices, can they be ommited?

This is a basic question about the need for world and camera space matrices when each are identity matrices. Can they be ommited when calculating a 2D projection? I'm pretty sure that they can, ...
4
votes
1answer
3k views

Projecting a 3D point to 2D screen space using a perspective camera matrix

I am attempting to project a series of 3D points onto the screen using a perspective camera matrix. I do not have world space (or consider it being an identity matrix) and my camera does not have ...
1
vote
1answer
1k views

Perspective projection - how do I project points which are behind 'camera'?

I'm writing my own software rasterizer in Java, and I ran into some trouble with it... take a look at a sample image, please: Image This sample just draw simple square grid on a plane. Everything ...
1
vote
2answers
1k views

I've got my 2D/3D conversion working perfectly, how to do perspective

Although the context of this question is about making a 2d/3d game, the problem i have boils down to some math. Although its a 2.5D world, lets pretend its just 2d for this question. // xa: x-accent, ...
6
votes
4answers
3k views

Move camera to fit 3D scene

I'm looking for an algorithm to fit a bounding box inside a viewport (in my case a DirectX scene). I know about algorithms for centering a bounding sphere in a orthographic camera but would need the ...
1
vote
1answer
994 views

WPF 3D Perspective camera question

I am working on a 3D flip control that can flip horizontally, vertically and can have any size and square or rectangular shape. While I have it working, I ran into a very odd issue with the ...
0
votes
1answer
1k views

Actionscript 3 3d with fieldofview

what does the field of view to do with the z axis in flash? I have tried moving object towards the eye with different fieldofview values with same z axis but their size changes. Please help
1
vote
2answers
291 views

How to determine Z-order when drawing in a one-point perspective?

I'm trying to make a simple javascript that draws rectangles on a canvas, then draws the side faces based on a one-point perspective. The problem is, the amount of rectangles and their positioning is ...
2
votes
2answers
1k views

How to determine 3D position of an object from perspective?

I have a situation as shown in image, where I need to determine x,y of red and blue square in rectangular space but under perspective. Length and width of the rectangle are know. The rectangles are ...
1
vote
2answers
1k views

WPF and 3D to create a bowl effect

How would one go about either using the 3D components of WPF or using a pseudo 3D effect to create a "Bowl" effect, where the user is looking down on a bowl and can drag around rectangles and have the ...
12
votes
2answers
5k views

Curvilinear perspective: Convert 3D to 2D

I'm looking for the mathematical expression converting a 3D coordinate (x0,y0,z0) to a 2D (x1,y1) coordinate in a curvilinear perspective of radius R where the values of x1 and y1 are the angles of ...