Dart DocumentationthreeRenderInts

RenderInts class

class RenderInts {
 int vertices;
 int faces;

 RenderInts() {
   reset();
 }

 void reset() {
   vertices = 0;
   faces = 0;
 }
}

Constructors

new RenderInts() #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
RenderInts() {
 reset();
}

Properties

int faces #

int faces

int vertices #

int vertices

Methods

void reset() #

void reset() {
 vertices = 0;
 faces = 0;
}