Exemplo n.º 1
0
 public Tesselator()
 {
     /* Only initialize fields which can be changed by the api.  Other fields
      * are initialized where they are used.
      */
     _processingState = ProcessingState.Dormant;
     _windingRule     = Tesselator.WindingRuleType.Odd;//default
     _boundaryOnly    = false;
 }
Exemplo n.º 2
0
        public Tesselator()
        {
            /* Only initialize fields which can be changed by the api.  Other fields
             * are initialized where they are used.
             */

            this.processingState = ProcessingState.Dormant;

            this.windingRule  = WindingRuleType.NonZero;
            this.boundaryOnly = false;
        }
Exemplo n.º 3
0
        ProcessingState processingState; /* what begin/end calls have we seen? */

        #endregion Fields

        #region Constructors

        public Tesselator()
        {
            /* Only initialize fields which can be changed by the api.  Other fields
            * are initialized where they are used.
            */

            this.processingState = ProcessingState.Dormant;

            this.windingRule = Tesselator.WindingRuleType.NonZero;
            this.boundaryOnly = false;
        }