Exemplo n.º 1
0
			public EdgeIntersection (LineClassification t) {
				type = t;
			}
Exemplo n.º 2
0
			public EdgeIntersection (LineClassification t, Vector3 a, Vector3 b) {
				type = t;
				intersectionA = a;
				intersectionB = b;
			}
Exemplo n.º 3
0
 public Line(string text, LineClassification classification, int classificationLevel)
 {
     _text = text;
     _classification = classification;
     _classificationLevel = classificationLevel;
 }