com.threerings.tudey.shape.config
Class ShapeConfig.Circle

java.lang.Object
  extended by com.threerings.util.DeepObject
      extended by com.threerings.tudey.shape.config.ShapeConfig
          extended by com.threerings.tudey.shape.config.ShapeConfig.Circle
All Implemented Interfaces:
Exportable, Streamable, Copyable, Cloneable
Enclosing class:
ShapeConfig

public static class ShapeConfig.Circle
extends ShapeConfig

A circle.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.threerings.tudey.shape.config.ShapeConfig
ShapeConfig.Capsule, ShapeConfig.Circle, ShapeConfig.Compound, ShapeConfig.Global, ShapeConfig.None, ShapeConfig.Point, ShapeConfig.Polygon, ShapeConfig.Rectangle, ShapeConfig.Segment, ShapeConfig.TransformedShape, ShapeConfig.Vertex
 
Nested classes/interfaces inherited from interface com.threerings.io.Streamable
Streamable.Closure
 
Field Summary
 float radius
          The radius of the circle.
 
Fields inherited from class com.threerings.tudey.shape.config.ShapeConfig
_bounds, _outlineList, _shape, _solidList, CIRCLE_INCREMENT, CIRCLE_SEGMENTS
 
Constructor Summary
ShapeConfig.Circle()
           
 
Method Summary
protected  Shape createShape()
          Creates the untransformed shape corresponding to this config.
protected  void draw(boolean outline)
          Draws this shape in immediate mode.
 
Methods inherited from class com.threerings.tudey.shape.config.ShapeConfig
getBounds, getList, getShape, invalidate
 
Methods inherited from class com.threerings.util.DeepObject
clone, copy, copy, equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

radius

@Editable(min=0.0,
          step=0.01)
public float radius
The radius of the circle.

Constructor Detail

ShapeConfig.Circle

public ShapeConfig.Circle()
Method Detail

createShape

protected Shape createShape()
Description copied from class: ShapeConfig
Creates the untransformed shape corresponding to this config.

Specified by:
createShape in class ShapeConfig

draw

protected void draw(boolean outline)
Description copied from class: ShapeConfig
Draws this shape in immediate mode.

Specified by:
draw in class ShapeConfig
Parameters:
outline - if true, draw the outline of the shape; otherwise, draw the solid form.