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
2 answers

How can I know the perspective transform matrix after findHomography

I'm new to OpenCV, and I'm doing something about image stitching. In the following code I want to know what the perspective transform matrix is and display the matrix, however I am getting the following errors. //-- Find the Homography cv::Mat H =…
user2567753
  • 39
  • 1
  • 5
0
votes
1 answer

LWJGL glOrtho and drawing axies

This is on a 2d canvas. Ok i want to make glOrtho add to x when going right and minus when going left and i want to add when going up and minus when going down. But when i draw it draws the objects not from bottom left (which is 0,0) it draws from…
0
votes
1 answer

Eclipse plugin: how to show .* resources by default in perspective

How to configure perspective in plugin/RCP to show .* resources. Currently, it should be done manually by selecting Customize View... by every user. In Eclipse plugin development how to show .* files in a new perspective by default? Related How to…
Paul Verest
  • 60,022
  • 51
  • 208
  • 332
0
votes
2 answers

Rounded Plane In THREE JS

THREE JS, can often seem angular and straight edged. I haven't used it for very long and thus am struggling to understand how to curve the world so to speak. I would imagine a renderer or something must be changed, but the idea is to take a 2d map…
Hunter Larco
  • 785
  • 5
  • 17
0
votes
0 answers

Why are the final image dimensions in my perspective projection not in (-1,-1) to (1,1)?

I have implemented a perspective projection algorithm according to chapter 6 Computer Graphics Principles and Practices (CGP&P) by Foley, van Dam, Feiner, Hughes (2nd edition). I have N'per = M * Sper * Spar * T (-prp) * R * T (-vrp). As I…
chessman
  • 1
  • 1
0
votes
2 answers

Eclipse 4.2(juno) did not call saveState method of ViewPart when workspace is closing

I have a eclipse-plugin that have two perspectives. There is a view which extends ViewPart in one of the two perspectives. In this view, I overrided saveState method of ViewPart to save my data. First, I open the prespective that has this view.…
0
votes
1 answer

Perspective image-upload C# method

I'm currently working on an Upload function in my ASP.NET Web Application which I need to perspective the picture before I save it. Ex. https://i.stack.imgur.com/YAM2s.png I know I can do it with CSS3 and jQuery on my frontend, but I would like it…
0
votes
1 answer

Eclipse plugin: How to extend perspective with View, that is implemented by external plugin

There is an Eclipse plugin, that defines Node perspective in plugin.xml file. I'd like to add default View to this perspective, that is implemented by Markdown Editor. Namely Markdown HTML preview. Will Eclipse behave nicely if user don't install…
Paul Verest
  • 60,022
  • 51
  • 208
  • 332
0
votes
1 answer

can i compute the exact visual dimensions of a perpective frustum in Open GL ES 2.0

I'd like to randomly create objects at different translations from the origin, but i want to guarantee that they're always visible, meaning i don't want to just discard objects they aren't visible. Assuming that my view matrix is an identity, can I…
Joey Carson
  • 2,973
  • 7
  • 36
  • 60
0
votes
1 answer

-ms-perspective not working in internet explorer 10

I'm trying to position divs with depth using the 'perspective:' and 'transform: translateZ' css properties. I have it working in Chrome, but not in IE10 or Firefox20. You can see the test here, on the "Who's coming" menu page... The containing div…
moosefetcher
  • 1,841
  • 2
  • 23
  • 39
0
votes
1 answer

How to manage the perspective transformation?

How to convert (x,y,z) coordinates from inside the perspective pyramid, to (x',y',z') coordinates inside the perspective cube? (in a right hand coordinate system) I tried to multiply this perspective matrix with the (x,y,z) vector, but the result…
defunct
  • 81
  • 1
  • 7
0
votes
1 answer

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 couldn't figure out why my code wasn't displaying…
NickLokarno
  • 300
  • 6
  • 20
0
votes
1 answer

In OpenGL, what effect does creating a perspective projection matrix have on the coordinates of an object?

I've recently begun learning OpenGL and as far as the communication with the GL and shaders go, I've gained a good competence, but I'm a little unclear regarding the coordinate system. I'm using OpenGL ES 2.0, so I have to do all of the matrix…
Joey Carson
  • 2,973
  • 7
  • 36
  • 60
0
votes
0 answers

Getting parameters for perspective function on opengl

I`m trying to use a GetPerspevtive function to check if the Perspective function returns the expected answer. My Perspective is that: Mat4 Perspective(Real fovy, Real aspect, Real zNear, Real zFar) { Real Cotan_fovy =…
absentia
  • 142
  • 2
  • 13
0
votes
2 answers

Project structure does not exist in the File Explorer in DDMS view

Why is my project structure not appearing on DDMS perspective when i run it in a real device?
Sterling Diaz
  • 3,789
  • 2
  • 31
  • 35