org.opensourcephysics.display3d.core
Interface Style

All Known Implementing Classes:
Style

public interface Style

Title: Style

Description: A class that holds display suggestions for 3D Elements. Actual Elements may use or not all of the suggestions provided.

Version:
March 2005
Author:
Francisco Esquembre

Nested Class Summary
static class Style.Loader
           
 
Method Summary
 double getDepthFactor()
           
 java.awt.Color getFillColor()
           
 java.awt.Color getLineColor()
           
 float getLineWidth()
           
 Resolution getResolution()
           
 boolean isDrawingFill()
           
 boolean isDrawingLines()
           
 void setDepthFactor(double factor)
           
 void setDrawingFill(boolean drawsFill)
           
 void setDrawingLines(boolean drawsLines)
           
 void setFillColor(java.awt.Color _color)
           
 void setLineColor(java.awt.Color _color)
           
 void setLineWidth(float _width)
           
 void setResolution(Resolution _res)
           
 

Method Detail

setLineColor

void setLineColor(java.awt.Color _color)

getLineColor

java.awt.Color getLineColor()

setLineWidth

void setLineWidth(float _width)

getLineWidth

float getLineWidth()

setFillColor

void setFillColor(java.awt.Color _color)

getFillColor

java.awt.Color getFillColor()

setResolution

void setResolution(Resolution _res)

getResolution

Resolution getResolution()

isDrawingFill

boolean isDrawingFill()

setDrawingFill

void setDrawingFill(boolean drawsFill)

isDrawingLines

boolean isDrawingLines()

setDrawingLines

void setDrawingLines(boolean drawsLines)

setDepthFactor

void setDepthFactor(double factor)

getDepthFactor

double getDepthFactor()