|
||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |
Packages that use Coord2d | |
---|---|
org.jzy3d.chart.controllers.camera | |
org.jzy3d.chart.controllers.mouse.picking | |
org.jzy3d.chart.controllers.mouse.selection | |
org.jzy3d.chart.controllers.thread.camera | |
org.jzy3d.maths | Provides mathematical tools: coordinates, spaces, grids, and trigonometry for 2 and 3 dimensions. |
org.jzy3d.maths.algorithms.convexhull | |
org.jzy3d.maths.algorithms.convexhull.algorithms | |
org.jzy3d.plot3d.primitives.axes | |
org.jzy3d.plot3d.primitives.graphs | |
org.jzy3d.plot3d.primitives.graphs.impl | |
org.jzy3d.plot3d.primitives.graphs.layout | |
org.jzy3d.plot3d.primitives.pickable | |
org.jzy3d.plot3d.primitives.textured | |
org.jzy3d.plot3d.rendering.view | Provides interfaces, abstract classes and concrete classes to perform rendering of 3d objects into a canvas. |
org.jzy3d.plot3d.rendering.view.controllers | |
org.jzy3d.plot3d.text | |
org.jzy3d.plot3d.text.drawable | |
org.jzy3d.plot3d.text.drawable.cells | |
org.jzy3d.plot3d.text.renderers | |
org.jzy3d.plot3d.text.renderers.jogl |
Uses of Coord2d in org.jzy3d.chart.controllers.camera |
---|
Fields in org.jzy3d.chart.controllers.camera declared as Coord2d | |
---|---|
protected Coord2d |
AbstractCameraController.prevMouse
|
Methods in org.jzy3d.chart.controllers.camera with parameters of type Coord2d | |
---|---|
protected void |
AbstractCameraController.rotate(Coord2d move)
|
protected void |
AbstractCameraController.rotate(Coord2d move,
boolean updateView)
|
Uses of Coord2d in org.jzy3d.chart.controllers.mouse.picking |
---|
Fields in org.jzy3d.chart.controllers.mouse.picking declared as Coord2d | |
---|---|
protected Coord2d |
NewtMousePickingController.prevMouse
|
protected Coord2d |
AWTMousePickingController.prevMouse
|
Uses of Coord2d in org.jzy3d.chart.controllers.mouse.selection |
---|
Fields in org.jzy3d.chart.controllers.mouse.selection with type parameters of type Coord2d | |
---|---|
protected Deque<Coord2d> |
AWTSphereMouseSelector.hull
|
Uses of Coord2d in org.jzy3d.chart.controllers.thread.camera |
---|
Fields in org.jzy3d.chart.controllers.thread.camera declared as Coord2d | |
---|---|
protected Coord2d |
CameraThreadController.move
|
Uses of Coord2d in org.jzy3d.maths |
---|
Fields in org.jzy3d.maths declared as Coord2d | |
---|---|
static Coord2d |
Coord2d.INVALID
An invalid Coord2d has value NaN for each dimension. |
static Coord2d |
Coord2d.ORIGIN
The origin is a Coord2d having value 0 for each dimension. |
Methods in org.jzy3d.maths that return Coord2d | |
---|---|
Coord2d |
Coord2d.add(Coord2d c2)
Add a Coord2d to the current one and return the result in a new Coord2d. |
Coord2d |
Coord2d.add(float value)
Add a value to all components of the current Coord and return the result in a new Coord2d. |
Coord2d |
Coord2d.add(float x,
float y)
|
protected static Coord2d |
ConvexHull.asPoint2f(Coord3d c)
|
Coord2d |
Coord2d.cartesian()
Converts the current Coord3d into cartesian coordinates and return the result in a new Coord3d. |
Coord2d |
Coord2d.clone()
Return a duplicate of this 3d coordinate. |
Coord2d |
Coord2d.div(Coord2d c2)
Divise a Coord2d to the current one and return the result in a new Coord2d. |
Coord2d |
Coord2d.div(float value)
Divise all components of the current Coord by the same value and return the result in a new Coord3d. |
Coord2d |
Coord2d.div(float x,
float y)
|
Coord2d |
Coord2d.fullPolar()
Return a real polar value, with an angle in the range [0;2*PI] http://fr.wikipedia.org/wiki/Coordonn%C3%A9es_polaires |
Coord2d |
BoundingBox2d.getCenter()
Compute and return the center point of the BoundingBox3d |
Coord2d |
Coord3d.getXY()
Return the x and y component as a 2d coordinate. |
Coord2d |
Coord2d.interpolation(Coord2d c,
float ratio)
Returns an interpolated point between the current and given point, according to an input ratio in [0;1] that indicates how near to the current point the new point will stand. |
Coord2d |
Coord2d.mul(Coord2d c2)
Multiply a Coord2d to the current one and return the result in a new Coord2d. |
Coord2d |
Coord2d.mul(float value)
Multiply all components of the current Coord and return the result in a new Coord3d. |
Coord2d |
Coord2d.mul(float x,
float y)
|
Coord2d |
Coord2d.polar()
Converts the current Coord2d into polar coordinates
and return the result in a new Coord2d . |
Coord2d |
Coord2d.sub(Coord2d c2)
Substract a Coord2d to the current one and return the result in a new Coord2d. |
Coord2d |
Coord2d.sub(float value)
Substract a value to all components of the current Coord and return the result in a new Coord2d. |
Coord2d |
Coord2d.sub(float x,
float y)
|
Coord2d |
Vector2d.vector()
Return the vector induced by this set of coordinates. |
Methods in org.jzy3d.maths that return types with arguments of type Coord2d | |
---|---|
static Deque<Coord2d> |
ConvexHull.build2d(List<Coord3d> input2d)
|
static Deque<Coord2d> |
ConvexHull.build2d(PolygonArray input2d)
|
Methods in org.jzy3d.maths with parameters of type Coord2d | |
---|---|
Coord2d |
Coord2d.add(Coord2d c2)
Add a Coord2d to the current one and return the result in a new Coord2d. |
void |
BoundingBox2d.add(Coord2d p)
Add a Point3d to the BoundingBox3d. |
void |
Coord2d.addSelf(Coord2d c2)
|
boolean |
BoundingBox2d.contains(Coord2d c)
Return true if coordinates is contained by this box. |
double |
Coord2d.distance(Coord2d c)
Compute the distance between two coordinates. |
double |
Coord2d.distanceSq(Coord2d c)
|
Coord2d |
Coord2d.div(Coord2d c2)
Divise a Coord2d to the current one and return the result in a new Coord2d. |
Coord2d |
Coord2d.interpolation(Coord2d c,
float ratio)
Returns an interpolated point between the current and given point, according to an input ratio in [0;1] that indicates how near to the current point the new point will stand. |
Coord2d |
Coord2d.mul(Coord2d c2)
Multiply a Coord2d to the current one and return the result in a new Coord2d. |
void |
Coord2d.set(Coord2d c)
|
Coord2d |
Coord2d.sub(Coord2d c2)
Substract a Coord2d to the current one and return the result in a new Coord2d. |
Constructors in org.jzy3d.maths with parameters of type Coord2d | |
---|---|
Angle2d(Coord2d p1,
Coord2d p2,
Coord2d p3)
Create an angle, described by three coordinates. |
|
Coord3d(Coord2d c,
float zi)
|
|
Vector2d(Coord2d p1,
Coord2d p2)
Create a vector, described by two coordinates. |
Constructor parameters in org.jzy3d.maths with type arguments of type Coord2d | |
---|---|
BoundingBox2d(List<Coord2d> list)
|
|
Polygon2d(Collection<? extends Coord2d> c)
|
Uses of Coord2d in org.jzy3d.maths.algorithms.convexhull |
---|
Methods in org.jzy3d.maths.algorithms.convexhull that return types with arguments of type Coord2d | |
---|---|
Deque<Coord2d> |
JarvisMarch.getConvexHull(Coord2d[] Q)
Palauttaa pinossa peitteen pisteet niin, että ensimmäinen ja viimeinen alkio ovat samat. . |
Deque<Coord2d> |
GrahamScan.getConvexHull(Coord2d[] pts)
implements interface |
Deque<Coord2d> |
ConvexHullFunction.getConvexHull(Coord2d[] pts)
|
Methods in org.jzy3d.maths.algorithms.convexhull with parameters of type Coord2d | |
---|---|
Deque<Coord2d> |
JarvisMarch.getConvexHull(Coord2d[] Q)
Palauttaa pinossa peitteen pisteet niin, että ensimmäinen ja viimeinen alkio ovat samat. . |
Deque<Coord2d> |
GrahamScan.getConvexHull(Coord2d[] pts)
implements interface |
Deque<Coord2d> |
ConvexHullFunction.getConvexHull(Coord2d[] pts)
|
Uses of Coord2d in org.jzy3d.maths.algorithms.convexhull.algorithms |
---|
Methods in org.jzy3d.maths.algorithms.convexhull.algorithms that return Coord2d | |
---|---|
Coord2d |
Converter.from(Coord2d p)
World coordinate to Screen coordinate. |
Coord2d |
Converter.to(Coord2d p)
Screen coordinate to World coordinate. |
Methods in org.jzy3d.maths.algorithms.convexhull.algorithms with parameters of type Coord2d | |
---|---|
int |
XYComparator.compare(Coord2d a,
Coord2d b)
|
int |
RadialComparator.compare(Coord2d p1,
Coord2d p2)
|
static int |
ComputationalGeometry.computeOrientation(Coord2d p1,
Coord2d p2,
Coord2d q)
|
Coord2d |
Converter.from(Coord2d p)
World coordinate to Screen coordinate. |
void |
RadialComparator.setOrigin(Coord2d newO)
|
Coord2d |
Converter.to(Coord2d p)
Screen coordinate to World coordinate. |
Constructors in org.jzy3d.maths.algorithms.convexhull.algorithms with parameters of type Coord2d | |
---|---|
RadialComparator(Coord2d origin)
|
Uses of Coord2d in org.jzy3d.plot3d.primitives.axes |
---|
Methods in org.jzy3d.plot3d.primitives.axes that return types with arguments of type Coord2d | |
---|---|
protected List<Coord2d> |
ContourAxeBox.getDefaultTextureMapping()
|
Uses of Coord2d in org.jzy3d.plot3d.primitives.graphs |
---|
Fields in org.jzy3d.plot3d.primitives.graphs declared as Coord2d | |
---|---|
protected Coord2d |
AbstractDrawableGraph2d.labelScreenOffset
|
Methods in org.jzy3d.plot3d.primitives.graphs that return Coord2d | |
---|---|
Coord2d |
AbstractDrawableGraph2d.getLabelScreenOffset()
|
Methods in org.jzy3d.plot3d.primitives.graphs with parameters of type Coord2d | |
---|---|
void |
AbstractDrawableGraph2d.setLabelScreenOffset(Coord2d labelOffset)
|
Uses of Coord2d in org.jzy3d.plot3d.primitives.graphs.impl |
---|
Methods in org.jzy3d.plot3d.primitives.graphs.impl with parameters of type Coord2d | |
---|---|
protected void |
DefaultDrawableGraph2d.drawEdge(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
E e,
Coord2d c1,
Coord2d c2,
Color color)
|
protected void |
DefaultDrawableGraph2d.drawVertexLabel(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
V v,
Coord2d coord,
Color color)
|
protected void |
TextureGraph2d.drawVertexNode(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
V v,
Coord2d coord,
Color color)
|
protected void |
PointGraph2d.drawVertexNode(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
V v,
Coord2d coord,
Color color)
|
protected void |
DefaultDrawableGraph2d.drawVertexNode(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
V v,
Coord2d coord,
Color color)
|
Uses of Coord2d in org.jzy3d.plot3d.primitives.graphs.layout |
---|
Methods in org.jzy3d.plot3d.primitives.graphs.layout that return Coord2d | |
---|---|
Coord2d |
IGraphLayout2d.get(V v)
|
Coord2d |
IGraphLayout2d.getVertexPosition(V v)
|
Coord2d |
DefaultGraphLayout2d.getVertexPosition(V v)
|
Methods in org.jzy3d.plot3d.primitives.graphs.layout that return types with arguments of type Coord2d | |
---|---|
Collection<Coord2d> |
IGraphLayout2d.values()
|
Methods in org.jzy3d.plot3d.primitives.graphs.layout with parameters of type Coord2d | |
---|---|
void |
IGraphLayout2d.setVertexPosition(V v,
Coord2d position)
|
void |
DefaultGraphLayout2d.setVertexPosition(V v,
Coord2d position)
|
Uses of Coord2d in org.jzy3d.plot3d.primitives.pickable |
---|
Constructor parameters in org.jzy3d.plot3d.primitives.pickable with type arguments of type Coord2d | |
---|---|
PickableTexture(SharedTexture resource,
PlaneAxis orientation,
float axisValue,
List<Coord2d> coords)
|
|
PickableTexture(SharedTexture resource,
PlaneAxis orientation,
float axisValue,
List<Coord2d> coords,
Color filter)
|
Uses of Coord2d in org.jzy3d.plot3d.primitives.textured |
---|
Fields in org.jzy3d.plot3d.primitives.textured declared as Coord2d | |
---|---|
protected Coord2d |
DrawableTexture.planePosition
|
Fields in org.jzy3d.plot3d.primitives.textured with type parameters of type Coord2d | |
---|---|
protected List<Coord2d> |
DrawableTexture.mapping
|
Methods in org.jzy3d.plot3d.primitives.textured that return Coord2d | |
---|---|
Coord2d |
DrawableTexture.getPlanePosition()
|
Methods in org.jzy3d.plot3d.primitives.textured that return types with arguments of type Coord2d | |
---|---|
protected List<Coord2d> |
DrawableTexture.getDefaultTextureMapping()
|
static List<Coord2d> |
DrawableTexture.getManualTextureMapping(float width,
float height)
|
static List<Coord2d> |
DrawableTexture.getManualTextureMapping(float width,
float height,
float xoffset,
float yoffset)
Must supply the expected size of texture in 3d coordinates. |
Methods in org.jzy3d.plot3d.primitives.textured with parameters of type Coord2d | |
---|---|
void |
DrawableTexture.setPlanePosition(Coord2d planePosition)
|
Constructor parameters in org.jzy3d.plot3d.primitives.textured with type arguments of type Coord2d | |
---|---|
DrawableTexture(SharedTexture resource,
PlaneAxis orientation,
float axisValue,
List<Coord2d> coords)
|
|
DrawableTexture(SharedTexture resource,
PlaneAxis orientation,
float axisValue,
List<Coord2d> coords,
Color filter)
|
Uses of Coord2d in org.jzy3d.plot3d.rendering.view |
---|
Methods in org.jzy3d.plot3d.rendering.view with parameters of type Coord2d | |
---|---|
void |
View.rotate(Coord2d move)
GENERAL DISPLAY CONTROLS |
void |
View.rotate(Coord2d move,
boolean updateView)
|
Uses of Coord2d in org.jzy3d.plot3d.rendering.view.controllers |
---|
Fields in org.jzy3d.plot3d.rendering.view.controllers declared as Coord2d | |
---|---|
protected Coord2d |
ViewMouseController.prevMouse
|
Methods in org.jzy3d.plot3d.rendering.view.controllers with parameters of type Coord2d | |
---|---|
protected void |
ViewCameraController.rotate(Coord2d move)
|
Uses of Coord2d in org.jzy3d.plot3d.text |
---|
Fields in org.jzy3d.plot3d.text declared as Coord2d | |
---|---|
protected Coord2d |
AbstractTextRenderer.defScreenOffset
|
Methods in org.jzy3d.plot3d.text with parameters of type Coord2d | |
---|---|
BoundingBox3d |
ITextRenderer.drawText(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
String s,
Coord3d position,
Halign halign,
Valign valign,
Color color,
Coord2d screenOffset)
|
BoundingBox3d |
AbstractTextRenderer.drawText(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
String s,
Coord3d position,
Halign halign,
Valign valign,
Color color,
Coord2d screenOffset)
|
BoundingBox3d |
ITextRenderer.drawText(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
String s,
Coord3d position,
Halign halign,
Valign valign,
Color color,
Coord2d screenOffset,
Coord3d sceneOffset)
|
Uses of Coord2d in org.jzy3d.plot3d.text.drawable |
---|
Methods in org.jzy3d.plot3d.text.drawable that return types with arguments of type Coord2d | |
---|---|
protected static List<Coord2d> |
DrawableTextTexture.makeMapping(Coord2d dim)
|
Methods in org.jzy3d.plot3d.text.drawable with parameters of type Coord2d | |
---|---|
protected static List<Coord2d> |
DrawableTextTexture.makeMapping(Coord2d dim)
|
Constructors in org.jzy3d.plot3d.text.drawable with parameters of type Coord2d | |
---|---|
DrawableTextTexture(String text,
Coord2d position,
Coord2d dim)
|
|
DrawableTextTexture(String text,
int fontSize,
Coord2d position,
Coord2d dim)
|
Constructor parameters in org.jzy3d.plot3d.text.drawable with type arguments of type Coord2d | |
---|---|
DrawableTextTexture(SharedTexture resource,
PlaneAxis orientation,
float axisValue,
List<Coord2d> coords)
|
|
DrawableTextTexture(SharedTexture resource,
PlaneAxis orientation,
float axisValue,
List<Coord2d> coords,
Color filter)
|
Uses of Coord2d in org.jzy3d.plot3d.text.drawable.cells |
---|
Methods in org.jzy3d.plot3d.text.drawable.cells that return types with arguments of type Coord2d | |
---|---|
protected static List<Coord2d> |
DrawableTextCell.makeMapping(Coord2d dim)
|
Methods in org.jzy3d.plot3d.text.drawable.cells with parameters of type Coord2d | |
---|---|
protected static List<Coord2d> |
DrawableTextCell.makeMapping(Coord2d dim)
|
Constructors in org.jzy3d.plot3d.text.drawable.cells with parameters of type Coord2d | |
---|---|
DrawableTextCell(BufferedImageTexture image,
Coord2d position,
Coord2d dim)
|
|
DrawableTextCell(int n,
String text,
Coord2d position,
Coord2d dim)
|
|
DrawableTextCell(TextCellRenderer renderer,
Coord2d position,
Coord2d dim)
|
Constructor parameters in org.jzy3d.plot3d.text.drawable.cells with type arguments of type Coord2d | |
---|---|
DrawableTextCell(SharedTexture resource,
PlaneAxis orientation,
float axisValue,
List<Coord2d> coords,
Color filter)
|
Uses of Coord2d in org.jzy3d.plot3d.text.renderers |
---|
Methods in org.jzy3d.plot3d.text.renderers with parameters of type Coord2d | |
---|---|
BoundingBox3d |
TextBitmapRenderer.drawText(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
String s,
Coord3d position,
Halign halign,
Valign valign,
Color color,
Coord2d screenOffset,
Coord3d sceneOffset)
Draw a string at the specified position and compute the 3d volume occupied by the string according to the current Camera configuration. |
BoundingBox3d |
TextBillboardRenderer.drawText(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
String s,
Coord3d position,
Halign halign,
Valign valign,
Color color,
Coord2d screenOffset,
Coord3d sceneOffset)
Draw a string at the specified position and compute the 3d volume occupied by the string according to the current Camera configuration. |
Uses of Coord2d in org.jzy3d.plot3d.text.renderers.jogl |
---|
Methods in org.jzy3d.plot3d.text.renderers.jogl with parameters of type Coord2d | |
---|---|
BoundingBox3d |
JOGLTextRenderer.drawText(javax.media.opengl.GL gl,
javax.media.opengl.glu.GLU glu,
Camera cam,
String s,
Coord3d position,
Halign halign,
Valign valign,
Color color,
Coord2d screenOffset,
Coord3d sceneOffset)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |