Questions tagged [perspective]

In Eclipse, a perspective defines the initial set and layout of views in the Workbench window. In CSS, perspective is a property and concept used in 3D transforms.

In Eclipse, a perspective defines the initial set and layout of views in the Workbench window. Within the window, each perspective shares the same set of editors. Each perspective provides a set of functionality aimed at accomplishing a specific type of task or works with specific types of resources. Perspectives control what appears in certain menus and toolbars. They define visible action sets, which you can change to customize a perspective. You can save a perspective that you build in this manner, making your own custom perspective that you can open again later.

In CSS, the perspective property determines the distance between the user and the z=0 plane, affecting the amount of distortion caused by 3D transforms. The perspective-origin property is related.

733 questions
0
votes
1 answer

Image plane and perspective transformation / camera stabilization

Lately I have been looking into the geometry of image processing. What I am trying to accomplish is this : Imagine there is two pictures of a scene. I want to convert second picture to the first picture. I want to revert perspectivity of the second…
Ozum Safa
  • 1,458
  • 2
  • 15
  • 27
0
votes
1 answer

Extract RCP perspective layout back into IDE

This is probably wishful thinking, but I figured I'd ask and hope to get lucky: I have an Eclipse RCP app with some complicated layouts. Is there some way to manually layout the views/editors in the perspective and export that layout back into the…
Michael W
  • 65
  • 5
0
votes
1 answer

How to create 3D perspective views of an image using OpenCV?

I have an image on the wall. I'd like to create its 3D perspective views by myself. Suppose the points on the images, camera location, orientation of the camera are given, how can I do to obtain the 3d perspective matrix to play with the original…
mintaka
  • 982
  • 1
  • 9
  • 25
0
votes
0 answers

OpenGL ES 1.0 glDepthRange visual appearence ? Reduce Depth of distance Objects

I currently have objects positioned in 'real' world positions (unit=meter). The problem is I want an object viewable a few kilometres away. When OpenGL scales this object, its too small and barely perceivable. I also have objects a few meters away,…
McP
  • 813
  • 1
  • 8
  • 16
0
votes
2 answers

Some confusion about Perspective projection

I have just learnt about Perspective projection, and am finding applying it in openGl a little bit confusing. Consider a simple Square . Before using perspective projection, I could just define the coordinates of its vertices in [-1,1] space and…
manasij7479
  • 1,665
  • 1
  • 14
  • 22
0
votes
4 answers

CSS 3d perspective off

i'm trying to get a hang off the 3d transform functions in css. My code at this point is pretty much copied straight from a tutorial because no matter how hard i try i just cant seem to get it working properly. the link to how it's supposed to look…
jrl589
  • 125
  • 7
0
votes
1 answer

Perspectives using different fact tables, same dimensions

My client has asked me to create a different perspective for an existing cube that shows only a subset of the fact table. I'm not sure if this is even possible though. I was hoping that I can bring in the same fact table again, filter it, and join…
confusedKid
  • 3,231
  • 6
  • 30
  • 49
0
votes
1 answer

"Reset Perspective..." menu is disabled in my eclipse rcp application

i have a very simple eclipse 3.6-based rcp application. i have an existing "Windows" menu to which i am trying to add "Reset Perspective..." sub-menu by creating a command entry with commandId value of org.eclipse.ui.window.resetPerspective. the…
user1056027
  • 145
  • 2
  • 2
  • 13
0
votes
2 answers

How to use wxreactor with twisted Perspective Broker [PB] to write a chat client

I am learning wxPython and twisted's Perspective Broker. I've been assigned to use them together to produce a chat client (I've already written the server, and a console based client.) This is what's stumping me: PB has it's own 'flow' with…
Eowyn Dean
  • 15
  • 5
0
votes
1 answer

eclipse editor, how to work with text editor (theme) when working with a specific perspective?

Is there a way to change the 'Appearance color' (or theme) in the editor when choosing to work with a specific view/perspective? To be more specific, I'm starting to use python and I wish to have a different theme but when switching to Java I'd like…
adhg
  • 10,437
  • 12
  • 58
  • 94
0
votes
2 answers

creating perspective objects with jquery

How is it possible to create for example an object with perspective. For example: http://www.spaceslide.co.uk/design-your-own.php?stage=5 In step 5 you can see the sliding wardrobe. If you want, you can also see the side (left or right). I think…
Ozkan
  • 3,880
  • 9
  • 47
  • 78
0
votes
1 answer

Translate ortographic to perspective

I have two points that describe line, problem is that i know coordinates of one for orthographic matrix (ie 150x250x0), and coordinates for second for perspective matrix (0.5x0.5x20.0f). I would like to translate orthographic coordinates to…
ZZZ
  • 678
  • 2
  • 10
  • 26
0
votes
1 answer

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 , CATransform3DRotate(layer.transform , 0.25 * M_PI, 0, 1, 0), now I want…
Luke
  • 370
  • 4
  • 11
0
votes
2 answers

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 having an orth view because it then is the same…
Nicke
  • 133
  • 12
0
votes
2 answers

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 really stretched out. It looks like this: I have done…
1 2 3
48
49