|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.graphstream.ui.swingViewer.util.GraphMetrics
public class GraphMetrics
p Various geometric informations on the graphic graph.
This class extends the GraphMetrics to provide not only metrics on the graphic graph but also on the rendering canvas, and allow to convert from graph metrics to canvas metrics and the reverse.
Here we call the canvas "view port" since this class allows to place a view port inside the graph in order to zoom and pan the view.
Field Summary | |
---|---|
double |
diagonal
The graph diagonal. |
Point3 |
hi
Graph higher position (top,right,back). |
Point3 |
hiVisible
The highest visible point. |
Point3 |
lo
Graph lower position (bottom,left,front). |
Point3 |
loVisible
The lowest visible point. |
double |
px1
The length for one pixel, according to the current transformation. |
double |
ratioPx2Gu
The scaling factor to pass from graph units to pixels. |
Vector3 |
size
Graph dimension. |
Vector3 |
viewport
The view port size. |
Constructor Summary | |
---|---|
GraphMetrics()
New canvas metrics with default values. |
Method Summary | |
---|---|
double |
getDiagonal()
The graph diagonal (the overall width). |
Point3 |
getHighPoint()
The graph highest (top,right,back) point. |
Point3 |
getLowPoint()
The graph lowest (bottom,left,front) point. |
Vector3 |
getSize()
The graph bounds. |
double |
graphDepthGU()
|
double |
graphHeightGU()
|
double |
graphWidthGU()
|
double |
lengthToGu(double value,
StyleConstants.Units units)
Convert a value in given units to graph units. |
double |
lengthToGu(Value value)
Convert a value in a given units to graph units. |
double |
lengthToGu(Values values,
int index)
Convert one of the given values in a given units to graph units. |
double |
lengthToPx(double value,
StyleConstants.Units units)
Convert a value in a given units to pixels. |
double |
lengthToPx(Value value)
Convert a value in a given units to pixels. |
double |
lengthToPx(Values values,
int index)
Convert one of the given values in a given units pixels. |
double |
positionPixelToGu(int pixels,
int index)
|
void |
setBounds(double minx,
double miny,
double minz,
double maxx,
double maxy,
double maxz)
Set the graphic graph bounds (the lowest and highest points). |
void |
setRatioPx2Gu(double ratio)
The ratio to pass by multiplication from pixels to graph units. |
void |
setViewport(double viewportWidth,
double viewportHeight)
Set the output view port size in pixels. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public Point3 lo
public Point3 hi
public Point3 loVisible
public Point3 hiVisible
public Vector3 size
public double diagonal
public Vector3 viewport
public double ratioPx2Gu
public double px1
Constructor Detail |
---|
public GraphMetrics()
Method Detail |
---|
public double getDiagonal()
public Vector3 getSize()
public Point3 getLowPoint()
public Point3 getHighPoint()
public double graphWidthGU()
public double graphHeightGU()
public double graphDepthGU()
public double lengthToGu(double value, StyleConstants.Units units)
value
- The value to convert.units
- The units the value to convert is expressed in.
public double lengthToGu(Value value)
value
- The value to convert (it contains its own units).public double lengthToGu(Values values, int index)
values
- The values set containing the value to convert (it contains
its own units).index
- Index of the value to convert.public double lengthToPx(double value, StyleConstants.Units units)
value
- The value to convert.units
- The units the value to convert is expressed in.
public double lengthToPx(Value value)
value
- The value to convert (it contains its own units).public double lengthToPx(Values values, int index)
values
- The values set containing the value to convert (it contains
its own units).index
- Index of the value to convert.public double positionPixelToGu(int pixels, int index)
public String toString()
toString
in class Object
public void setViewport(double viewportWidth, double viewportHeight)
viewportWidth
- The width in pixels of the view port.viewportHeight
- The width in pixels of the view port.public void setRatioPx2Gu(double ratio)
ratio
- The ratio.public void setBounds(double minx, double miny, double minz, double maxx, double maxy, double maxz)
minx
- Lowest abscissa.miny
- Lowest ordinate.minz
- Lowest depth.maxx
- Highest abscissa.maxy
- Highest ordinate.maxz
- Highest depth.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |