|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use CoordinateSystem | |
| com.tensegrity.composite | The Tensgrity Graph Framework supports complex visual representations of nodes and edges. |
| com.tensegrity.composite.coordinate | Provides interfaces and classes for creating and dealing with coordinate systems. |
| com.tensegrity.composite.geometry | Provides interfaces and classes for defining and dealing with geometries and styles for composites. |
| com.tensegrity.composite.geometry.persistence | Provides interfaces and classes for making geometry attributes of composites persistent. |
| com.tensegrity.gui.swing.repository | The repository package contains classes for the creation of a repository control. |
| com.tensegrity.gui.swt.repository | |
| com.tensegrity.gui.template | |
| Uses of CoordinateSystem in com.tensegrity.composite |
| Methods in com.tensegrity.composite that return CoordinateSystem | |
CoordinateSystem |
CompositeView.getCoordinateSystem()
Returns the CoordinateSystem the CompositeView
uses. |
CoordinateSystem |
CompositeView.getReferenceCoordinateSystem()
Returns the CoordinateSystem the CompositeView
currently uses as reference for the viewport and such. |
CoordinateSystem |
CompositeNavigatorProvider.getCoordinateSystem()
Returns the current CoordinateSystem of the
CompositeNavigatorProvider. |
CoordinateSystem |
CompositeNavigatorProvider.getReferenceCoordinateSystem()
Method getReferenceCoordinateSystem returns the reference coordinate system. |
CoordinateSystem |
Composite.getCoordinateSystem()
Returns the CoordianteSystem the composite uses. |
| Methods in com.tensegrity.composite with parameters of type CoordinateSystem | |
void |
Composite.setCoordinateSystem(CoordinateSystem coordSystem)
Sets the CoordinateSystem used by this
Composite to the given one. |
abstract Composite |
CompositeFactory.newComposite(CoordinateSystem coordSystem)
Creates a new Composite with the given
CoordinateSystem. |
abstract CompositeGroup |
CompositeFactory.newCompositeGroup(CoordinateSystem coordSystem)
Creates a new CompositeGroup with the given
CoordinateSystem. |
abstract CompositeGroup |
CompositeFactory.newCompositeGroup(CoordinateSystem coordSystemReference,
CoordinateSystem coordSystem)
|
abstract CompositeSwimLane |
CompositeFactory.newCompositeSwimLane(CoordinateSystem coordSystem)
Creates a new CompositeSwimLane with the
CoordinateSytem given by coordSystem. |
abstract CompositeSwimLanePool |
CompositeFactory.newCompositeSwimLanePool(CoordinateSystem coordSystem)
Creates a new CompositeSwimLanePool with the
CoordinateSytem given by coordSystem. |
abstract CompositeTable |
CompositeFactory.newCompositeTable(CoordinateSystem coordSystem)
Creates a new CompositeTable using the
CoordinateSystem given by parameter coordSystem. |
abstract CompositeTable |
CompositeFactory.newCompositeTable(CoordinateSystem coordSystem,
int columns,
int rows)
Creates a new CompositeTable with the given number of
columns and rows. |
abstract CompositeTable |
CompositeFactory.newCompositeTable(CoordinateSystem coordSystem,
java.lang.Object[] columnHeaders,
java.lang.Object[] rowHeaders)
Creates a new CompositeTable with the
CoordinateSystem given by parameter coordSystem.
|
abstract CompositeTable |
CompositeFactory.newCompositeTable(CoordinateSystem coordSystem,
com.tensegrity.composite.defaultimpl.table.CompositeTableModel model)
Creates a new CompositeTable that uses the given
CoordinateSystem and the given
CompositeTableModel. |
abstract CompositeLabel |
CompositeFactory.newCompositeLabel(CoordinateSystem coordSystem)
|
| Uses of CoordinateSystem in com.tensegrity.composite.coordinate |
| Subclasses of CoordinateSystem in com.tensegrity.composite.coordinate | |
class |
MutableCoordinateSystem
The MutableCoordinateSystem is a generalization of the
CoordinateSystem. |
| Fields in com.tensegrity.composite.coordinate declared as CoordinateSystem | |
static CoordinateSystem |
CoordinateSystem.DEFAULT_SYSTEM
A default coordinate-system with minimum and maximum values set to zero. |
| Methods in com.tensegrity.composite.coordinate that return CoordinateSystem | |
static CoordinateSystem |
CoordinateSystemUtilities.copy(CoordinateSystem coordSystem)
Returns a copy of the CoordinateSystem instance given by
coordSystem. |
static CoordinateSystem |
CoordinateSystemUtilities.createCoordinateSystem(AttributeList list,
java.lang.String name)
Method createCoordinateSystem creates a CoordinateSystem from the given list of double values. |
static CoordinateSystem |
CoordinateSystemUtilities.createCoordinateSystem(int xMin,
int xMax,
int yMin,
int yMax)
Creates a CoordinateSystem with the given
minimum and maximum vlues. |
static CoordinateSystem |
CoordinateSystemPool.parse(java.lang.String description)
Parses the canonical description of a CoordinateSystem given
by description and pools a new instance if necessary. |
| Methods in com.tensegrity.composite.coordinate with parameters of type CoordinateSystem | |
static CoordinateSystem |
CoordinateSystemUtilities.copy(CoordinateSystem coordSystem)
Returns a copy of the CoordinateSystem instance given by
coordSystem. |
static MutableCoordinateSystem |
CoordinateSystemUtilities.convertToMutableCoordinateSystem(CoordinateSystem coordSystem)
Returns an equivalent mutable version of the given immutable CoordinateSystem. |
static double[] |
CoordinateSystemUtilities.convertCoordinateSystemValues(CoordinateSystem sourceSystem,
CoordinateSystem targetSystem,
double[] values)
Converts the values given by values from a source coordinate
system given by sourceSystem to a target coordinate system
given by targetSystem. |
static Attribute |
CoordinateSystemUtilities.toAttribute(CoordinateSystem coordSystem,
java.lang.String name)
Method toAttribute converts an instance of CoordinateSystem
to an Attribute.
|
static Attribute |
CoordinateSystemUtilities.toAttribute(CoordinateSystem coordSystem)
Returns an Attribute representing the given
CoordinateSystem. |
Boundary |
CoordinateSystemMetric.convertBoundingBox(int dpi,
CoordinateSystem coordSystem)
Returns an instance of Boundary with the size of the given
CoordinateSystem according the the internal measuring unit,
value and the given resolution. |
| Uses of CoordinateSystem in com.tensegrity.composite.geometry |
| Methods in com.tensegrity.composite.geometry that return CoordinateSystem | |
CoordinateSystem |
GeometryDescriptor.getCoordinateSystem()
Returns the CoordinateSystem of the geometry. |
CoordinateSystem |
DefaultGeometryDescriptor.getCoordinateSystem()
|
| Methods in com.tensegrity.composite.geometry with parameters of type CoordinateSystem | |
static void |
GeometryHints.registerCoordinateSystemConstants(java.util.Map constants,
CoordinateSystem coordSystem)
|
static Boundary |
GeometryUtilities.computeBoundingBoxFromCoordinateSystem(CoordinateSystem cs)
|
| Constructors in com.tensegrity.composite.geometry with parameters of type CoordinateSystem | |
DefaultGeometryDescriptor(int type,
java.lang.String name,
CoordinateSystem coordSystem,
java.util.List items)
Constructor for DefaultGeometryDescriptor. |
|
DefaultGeometryDescriptor(int type,
java.lang.String name,
CoordinateSystem coordSystem,
java.util.List items,
AttributeSet attributes)
Constructor for DefaultGeometryDescriptor specifying an
additional AttributeSet. |
|
| Uses of CoordinateSystem in com.tensegrity.composite.geometry.persistence |
| Methods in com.tensegrity.composite.geometry.persistence that return CoordinateSystem | |
protected CoordinateSystem |
GeometryDescriptorBuilder.createCoordinateSystem(AttributeList list)
Creates a CoordinateSystem from the given list of double
values. |
| Uses of CoordinateSystem in com.tensegrity.gui.swing.repository |
| Constructors in com.tensegrity.gui.swing.repository with parameters of type CoordinateSystem | |
VisualGraphObjectIcon(VisualGraphObject vgo,
double textscalefactor,
CoordinateSystem coordSystem,
int width,
int height)
Creates a new VisualGraphObjectIcon based on the given
VisualGraphObject, using the scalefactor for the text,
CoordinateSystem. |
|
VisualGraphObjectIcon(VisualGraphObject vgo,
double textscalefactor,
CoordinateSystem coordSystem)
Creates a new VisualGraphObjectIcon based on the given
VisualGraphObject and CoordinateSystem. |
|
| Uses of CoordinateSystem in com.tensegrity.gui.swt.repository |
| Constructors in com.tensegrity.gui.swt.repository with parameters of type CoordinateSystem | |
VisualGraphObjectSwtIcon(org.eclipse.swt.graphics.Device device,
VisualGraphObject vgo,
double textscalefactor,
CoordinateSystem coordSystem,
int width,
int height)
This constructor creates instances of VisualGraphObjectSwtIcon based on the given
VisualGraphObject with a width and height respectively of
width and height.
|
|
VisualGraphObjectSwtIcon(org.eclipse.swt.graphics.Device device,
VisualGraphObject vgo,
double textscalefactor,
CoordinateSystem coordSystem,
Raster raster,
int width,
int height)
This constructor creates instances of VisualGraphObjectSwtIcon based on the given
VisualGraphObject with a width and height respectively of
width and height.
|
|
| Uses of CoordinateSystem in com.tensegrity.gui.template |
| Methods in com.tensegrity.gui.template that return CoordinateSystem | |
static CoordinateSystem |
TemplateUtilities.toCoordinateSystem(GeometryItemCoordinates geometryCoordinates)
The method toCoordinateSystem converts a given GeometryItemCoordinate instance to a CoordinateSystem. |
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||