org.opensourcephysics.display3d.simple3d
Class Group

java.lang.Object
  extended by org.opensourcephysics.display3d.simple3d.Element
      extended by org.opensourcephysics.display3d.simple3d.Group
All Implemented Interfaces:
Data, Element, Group, InteractionSource
Direct Known Subclasses:
Set

public class Group
extends Element
implements Group

Title: Group

Description: A Group is an element that is made of other elements.

The group's position, size, visibility and transformation do affect the elements in the group. The group's style doesn't, though.

Version:
March 2005
Author:
Francisco Esquembre
See Also:
Style

Field Summary
 
Fields inherited from interface org.opensourcephysics.display3d.core.Element
TARGET_POSITION, TARGET_SIZE
 
Constructor Summary
Group()
           
 
Method Summary
 void addElement(Element element)
          Adds an Element to this Group.
 void addElements(java.util.Collection<Element> elements)
           
 java.lang.String[] getColumnNames()
          The column names to be used in the data display tool
 double[][] getData2D()
          Gets a 2D array of data.
 double[][][] getData3D()
          Gets a 3D array of data.
 java.util.List<Data> getDataList()
          Some Data objects (e.g., a Group) do not contain data, but a list of Data objects which do.
 java.util.ArrayList<Dataset> getDatasets()
          Gets a list of OSP Datasets.
 Element getElement(int index)
          Gets the elements of the group at a given index.
 java.util.List<Element> getElements()
          Gets the cloned list of Elements in the group.
 void getExtrema(double[] min, double[] max)
          Returns the extreme points of a box that contains the element.
 java.awt.Color[] getFillColors()
          Fill color to use for this data
 int getID()
          Returns a unique identifier for this Data.
 java.awt.Color[] getLineColors()
          Line color to use for this data
static XML.ObjectLoader getLoader()
           
 InteractionTarget getTargetHit(int x, int y)
          Gets the target that is under the (x,y) position of the screen
 void removeAllElements()
          Removes all Elements from this Group
 void removeElement(Element element)
          Removes an Element from this Group
 void setID(int id)
          Sets the ID number of this Data.
 
Methods inherited from class org.opensourcephysics.display3d.simple3d.Element
addInteractionListener, getDrawingPanel3D, getInteractionTarget, getName, getSizeX, getSizeY, getSizeZ, getStyle, getTransformation, getX, getY, getZ, isVisible, loadUnmutableObjects, removeInteractionListener, setName, setSizeX, setSizeXYZ, setSizeXYZ, setSizeY, setSizeZ, setTransformation, setVisible, setX, setXYZ, setXYZ, setY, setZ, toBodyFrame, toSpaceFrame
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.opensourcephysics.display3d.core.Element
getDrawingPanel3D, getName, getSizeX, getSizeY, getSizeZ, getStyle, getTransformation, getX, getY, getZ, isVisible, loadUnmutableObjects, setName, setSizeX, setSizeXYZ, setSizeXYZ, setSizeY, setSizeZ, setTransformation, setVisible, setX, setXYZ, setXYZ, setY, setZ, toBodyFrame, toSpaceFrame
 
Methods inherited from interface org.opensourcephysics.display3d.core.interaction.InteractionSource
addInteractionListener, getInteractionTarget, removeInteractionListener
 
Methods inherited from interface org.opensourcephysics.display.Data
getName
 

Constructor Detail

Group

public Group()
Method Detail

addElement

public void addElement(Element element)
Description copied from interface: Group
Adds an Element to this Group.

Specified by:
addElement in interface Group
Parameters:
element - Element
See Also:
Element

addElements

public void addElements(java.util.Collection<Element> elements)

removeElement

public void removeElement(Element element)
Description copied from interface: Group
Removes an Element from this Group

Specified by:
removeElement in interface Group
Parameters:
element - Element
See Also:
Element

removeAllElements

public void removeAllElements()
Description copied from interface: Group
Removes all Elements from this Group

Specified by:
removeAllElements in interface Group
See Also:
Element

getElements

public java.util.List<Element> getElements()
Description copied from interface: Group
Gets the cloned list of Elements in the group. (Should be synchronized.)

Specified by:
getElements in interface Group
Returns:
cloned list

getElement

public Element getElement(int index)
Description copied from interface: Group
Gets the elements of the group at a given index.

Specified by:
getElement in interface Group
Returns:
the given element (null if the index is not within allowed bounds)

getExtrema

public void getExtrema(double[] min,
                       double[] max)
Description copied from class: Element
Returns the extreme points of a box that contains the element.

Parameters:
min - double[] A previously allocated double[3] array that will hold the minimum point
max - double[] A previously allocated double[3] array that will hold the maximum point

getTargetHit

public InteractionTarget getTargetHit(int x,
                                      int y)
Description copied from class: Element
Gets the target that is under the (x,y) position of the screen

Parameters:
x - int
y - int
Returns:
InteractionTarget

setID

public void setID(int id)
Sets the ID number of this Data.

Specified by:
setID in interface Data
Parameters:
id - the ID number

getID

public int getID()
Returns a unique identifier for this Data.

Specified by:
getID in interface Data
Returns:
the ID number

getData2D

public double[][] getData2D()
Description copied from interface: Data
Gets a 2D array of data. The first column, double[0][] often contains x-values; Remaining columns often contain y values. May return null if data not yet generated or object does not support 2D data.

Specified by:
getData2D in interface Data
Returns:
double[][]

getData3D

public double[][][] getData3D()
Description copied from interface: Data
Gets a 3D array of data. May return null if data not yet generated or object does not support 3D data.

Specified by:
getData3D in interface Data
Returns:
double[][][]

getColumnNames

public java.lang.String[] getColumnNames()
Description copied from interface: Data
The column names to be used in the data display tool

Specified by:
getColumnNames in interface Data
Returns:
an array of names

getLineColors

public java.awt.Color[] getLineColors()
Description copied from interface: Data
Line color to use for this data

Specified by:
getLineColors in interface Data
Returns:
a color

getFillColors

public java.awt.Color[] getFillColors()
Description copied from interface: Data
Fill color to use for this data

Specified by:
getFillColors in interface Data
Returns:
a color

getDataList

public java.util.List<Data> getDataList()
Description copied from interface: Data
Some Data objects (e.g., a Group) do not contain data, but a list of Data objects which do. This method is used by Data displaying tools to create as many pages as needed.

Specified by:
getDataList in interface Data
Returns:
a list of Data objects, or null if this object contains data

getDatasets

public java.util.ArrayList<Dataset> getDatasets()
Description copied from interface: Data
Gets a list of OSP Datasets. May return null if data not yet generated or object does not support Datasets.

Specified by:
getDatasets in interface Data
Returns:
list of Datasets

getLoader

public static XML.ObjectLoader getLoader()