Package org.jbox2d.common
Class OBBViewportTransform
- java.lang.Object
-
- org.jbox2d.common.OBBViewportTransform
-
- All Implemented Interfaces:
IViewportTransform
public class OBBViewportTransform extends java.lang.Object implements IViewportTransform
Orientated bounding box viewport transform
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOBBViewportTransform.OBB
-
Constructor Summary
Constructors Constructor Description OBBViewportTransform()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vec2getCenter()center of the viewport.Vec2getExtents()This is the half-width and half-height.voidgetScreenToWorld(Vec2 argScreen, Vec2 argWorld)takes the screen coordinates (argScreen) and puts the corresponding world coordinates in argWorld.voidgetScreenVectorToWorld(Vec2 argScreen, Vec2 argWorld)Transforms the given directional screen vector back to the world direction.Mat22getTransform()gets the transform of the viewport, transforms around the center.voidgetWorldToScreen(Vec2 argWorld, Vec2 argScreen)takes the world coordinate (argWorld) puts the corresponding screen coordinate in argScreen.voidgetWorldVectorToScreen(Vec2 argWorld, Vec2 argScreen)Transforms the given directional vector by the viewport transform (not positional)booleanisYFlip()voidmulByTransform(Mat22 argTransform)Multiplies the obb transform by the given transformvoidset(OBBViewportTransform vpt)voidsetCamera(float x, float y, float scale)Sets the transform's center to the given x and y coordinates, and using the given scale.voidsetCenter(float x, float y)sets the center of the viewport.voidsetCenter(Vec2 argPos)sets the center of the viewport.voidsetExtents(float argHalfWidth, float argHalfHeight)This sets the half-width and half-height of the viewport.voidsetExtents(Vec2 argExtents)This sets the half-width and half-height.voidsetTransform(Mat22 transform)Sets the transform of the viewport.voidsetYFlip(boolean yFlip)
-
-
-
Field Detail
-
box
protected final OBBViewportTransform.OBB box
-
yFlip
private boolean yFlip
-
yFlipMat
private final Mat22 yFlipMat
-
yFlipMatInv
private final Mat22 yFlipMatInv
-
inv
private final Mat22 inv
-
inv2
private final Mat22 inv2
-
-
Method Detail
-
set
public void set(OBBViewportTransform vpt)
-
setCamera
public void setCamera(float x, float y, float scale)Description copied from interface:IViewportTransformSets the transform's center to the given x and y coordinates, and using the given scale.- Specified by:
setCamerain interfaceIViewportTransform- See Also:
IViewportTransform.setCamera(float, float, float)
-
getExtents
public Vec2 getExtents()
Description copied from interface:IViewportTransformThis is the half-width and half-height. This should be the actual half-width and half-height, not anything transformed or scaled. Not a copy.- Specified by:
getExtentsin interfaceIViewportTransform- Returns:
- See Also:
IViewportTransform.getExtents()
-
setExtents
public void setExtents(Vec2 argExtents)
Description copied from interface:IViewportTransformThis sets the half-width and half-height. This should be the actual half-width and half-height, not anything transformed or scaled.- Specified by:
setExtentsin interfaceIViewportTransform- See Also:
IViewportTransform.setExtents(Vec2)
-
setExtents
public void setExtents(float argHalfWidth, float argHalfHeight)Description copied from interface:IViewportTransformThis sets the half-width and half-height of the viewport. This should be the actual half-width and half-height, not anything transformed or scaled.- Specified by:
setExtentsin interfaceIViewportTransform- See Also:
IViewportTransform.setExtents(float, float)
-
getCenter
public Vec2 getCenter()
Description copied from interface:IViewportTransformcenter of the viewport. Not a copy.- Specified by:
getCenterin interfaceIViewportTransform- Returns:
- See Also:
IViewportTransform.getCenter()
-
setCenter
public void setCenter(Vec2 argPos)
Description copied from interface:IViewportTransformsets the center of the viewport.- Specified by:
setCenterin interfaceIViewportTransform- See Also:
IViewportTransform.setCenter(Vec2)
-
setCenter
public void setCenter(float x, float y)Description copied from interface:IViewportTransformsets the center of the viewport.- Specified by:
setCenterin interfaceIViewportTransform- See Also:
IViewportTransform.setCenter(float, float)
-
getTransform
public Mat22 getTransform()
gets the transform of the viewport, transforms around the center. Not a copy.- Returns:
-
setTransform
public void setTransform(Mat22 transform)
Sets the transform of the viewport. Transforms about the center.- Parameters:
transform-
-
mulByTransform
public void mulByTransform(Mat22 argTransform)
Multiplies the obb transform by the given transform- Parameters:
argTransform-
-
isYFlip
public boolean isYFlip()
- Specified by:
isYFlipin interfaceIViewportTransform- Returns:
- if the transform flips the y axis
- See Also:
IViewportTransform.isYFlip()
-
setYFlip
public void setYFlip(boolean yFlip)
- Specified by:
setYFlipin interfaceIViewportTransform- Parameters:
yFlip- if we flip the y axis when transforming- See Also:
IViewportTransform.setYFlip(boolean)
-
getScreenVectorToWorld
public void getScreenVectorToWorld(Vec2 argScreen, Vec2 argWorld)
Description copied from interface:IViewportTransformTransforms the given directional screen vector back to the world direction.- Specified by:
getScreenVectorToWorldin interfaceIViewportTransform- See Also:
IViewportTransform.getScreenVectorToWorld(Vec2, Vec2)
-
getWorldVectorToScreen
public void getWorldVectorToScreen(Vec2 argWorld, Vec2 argScreen)
Description copied from interface:IViewportTransformTransforms the given directional vector by the viewport transform (not positional)- Specified by:
getWorldVectorToScreenin interfaceIViewportTransform- See Also:
IViewportTransform.getWorldVectorToScreen(Vec2, Vec2)
-
getWorldToScreen
public void getWorldToScreen(Vec2 argWorld, Vec2 argScreen)
Description copied from interface:IViewportTransformtakes the world coordinate (argWorld) puts the corresponding screen coordinate in argScreen. It should be safe to give the same object as both parameters.- Specified by:
getWorldToScreenin interfaceIViewportTransform
-
getScreenToWorld
public void getScreenToWorld(Vec2 argScreen, Vec2 argWorld)
Description copied from interface:IViewportTransformtakes the screen coordinates (argScreen) and puts the corresponding world coordinates in argWorld. It should be safe to give the same object as both parameters.- Specified by:
getScreenToWorldin interfaceIViewportTransform- See Also:
IViewportTransform.getScreenToWorld(Vec2, Vec2)
-
-