Panning and zooming a component, Computer Graphics

Assignment Help:

Panning and zooming Components (such as your Polybounce or Animation) is simply a matter of reFrameing the world window. To pan right or left horizontally, one shifts it in the positive or negative x direction, respectively. To pan up or down vertically one shifts it in the positive or negative y direction. If factor is the fraction of the world window that you want to pan, these can be implemented as:

// Horiz. pan --- Pan left moves world window left void Polybounce::panH(double factor)
{
reFrame(world()+Point2(w_width()*factor,0));
}
// Vert. pan --- Pan up moves world window down
void Polybounce::panV(double factor)
{
reFrame(world()+Point2(0,w_height()*factor));
}

To zoom in or out, one needs to resize the world window either smaller or larger, respectively, without changing the center of the window. You can do this by ?rst translating the center of the window to the origin, then scaling the window (using scalar multiplication of RealRects), then translating it back to its original center.

This still only takes a few lines of code. If scale is the scaling factor:

// Zoom
void Polybounce::zoom(double scale)
{
Point2 center( (world().left()+world().right())/2,
(world().bottom()+world().top())/2 );
// translate to origin
reFrame(world()-center);
// scale by getZoom
reFrame(world()*Point2(scale,scale));
// translate back
reFrame(world()+center);
}

To add panning and zooming to your Polybounce without pan and zoom sliders,you can simply add keyboard events for these which just pan by a ?xed fragment,1/4 of the window, say, and zoom by ?xed scaling factors, perhaps 1/2 for zoom in and 2 for zoom out. These could be added to the Polybounce class, but they will need to be passed from the Display class anyway, so there is no reason to not just call the pan and zoom functions directly from Display's keyboard event handler.


Related Discussions:- Panning and zooming a component

What is a dot size, What is a dot size? Dot size may be explained as th...

What is a dot size? Dot size may be explained as the diameter of a single dot on the devices output. Dot size is also known as the Spot size.

3dstudio - softwares for computer animation, 3Dstudio - Softwares for compu...

3Dstudio - Softwares for computer animation 3DStudio is a 3-D computer graphics programmed. 3DStudio runs on personal computers. This is relatively simple to use. Several schoo

Linking, Linking: A hypermedia system and also information in general cont...

Linking: A hypermedia system and also information in general contains different types of relationships among various information parts. Illustrations of typical relationships comp

Xy-shear about the origin - 2-d and 3-d transformations, xy-Shear about the...

xy-Shear about the Origin - 2-d and 3-d transformations Suppose an object point P(x,y) be moved to P'(x',y') as a outcome of shear transformation in both x- and y-directions a

Define the term -monitoring, Define the term -Monitoring Chemical and n...

Define the term -Monitoring Chemical and nuclear plants (monitoring key parameters), hospitals (monitoring patient's vital signs), burglar alarms (monitoring for intruders) etc

Convert the rgb values for the colours, In computers, colours are created b...

In computers, colours are created by blending different combinations of red, green and blue. These colours are normally specified as three two-digit hexadecimal numbers in html, ph

Briefly explain types of animation, Question 1 Briefly explain types of an...

Question 1 Briefly explain types of animation Question 2 Briefly explain steps involved in animation process Question 3 What is Layout? Explain two types of layout

Voltage or electro-magnetic field tablet and pointer, (a)  Voltage or Elect...

(a)  Voltage or Electro-Magnetic Field Tablet and Pointer: This has a grid of wires, embedded in the tablet surface along with various voltages or magnetic fields consequent to va

Normalization transformation, Find the normalization transformation N, whic...

Find the normalization transformation N, which uses the rectangle W(1, 1); X(5, 3); Y(4, 5) and Z(0, 3) as a window and the normalized deice screen as viewpoint.

Important point for transformation for isometric projection, Important Poin...

Important Points about the Transformation for isometric projection Note: We can also verify such Isometric transformation matrix through checking all the foreshortening fact

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd