Uses of Class
edu.neu.ccs.gui.WindingRule

Packages that use WindingRule
edu.neu.ccs.gui Provides classes and interfaces for designing and implementing graphical interfaces and for the creation of paintable and mutatable objects.. 
 

Uses of WindingRule in edu.neu.ccs.gui
 

Fields in edu.neu.ccs.gui declared as WindingRule
static WindingRule WindingRule.WIND_NON_ZERO
          WindingRule that returns GeneralPath.WIND_NON_ZERO.
static WindingRule WindingRule.WIND_EVEN_ODD
          WindingRule that returns GeneralPath.WIND_EVEN_ODD.
 

Methods in edu.neu.ccs.gui that return WindingRule
 WindingRule BaseShape.getWindingRule()
          Get the winding rule.
 

Methods in edu.neu.ccs.gui with parameters of type WindingRule
 GeneralPath Path.Strategy.makePath(float[][] vertex, float[][] tangent, ClosureMode mode, WindingRule windingrule)
          Returns a GeneralPath given a vertex array, a tangent array, a choice of ClosureMode, and a choice of WindingRule.
 void BaseShape.setWindingRule(WindingRule windingrule)
          Sets the winding rule and makes a new path.
 

Constructors in edu.neu.ccs.gui with parameters of type WindingRule
TweakableShape(float[][] vertex, float[][] tangent, Path.Strategy pathstrategy, ClosureMode closuremode, WindingRule windingrule)
          The constructor with the given vertex and tangent data, the given path strategy, the given closure mode, and the given winding rule.
AutomaticShape(float[][] vertex, float[][] endTangent, Tangent.Strategy tangentstrategy, Path.Strategy pathstrategy, ClosureMode closuremode, WindingRule windingrule)
          The constructor with the given vertex data, the given end tangent data, the given tangent strategy, the given path strategy, the given closure mode, and the given winding rule.