public EdgeIntersection (LineClassification t) {
				type = t;
			}
			public EdgeIntersection (LineClassification t, Vector3 a, Vector3 b) {
				type = t;
				intersectionA = a;
				intersectionB = b;
			}
Example #3
0
 public Line(string text, LineClassification classification, int classificationLevel)
 {
     _text = text;
     _classification = classification;
     _classificationLevel = classificationLevel;
 }