コード例 #1
0
			public EdgeIntersection (LineClassification t) {
				type = t;
			}
コード例 #2
0
			public EdgeIntersection (LineClassification t, Vector3 a, Vector3 b) {
				type = t;
				intersectionA = a;
				intersectionB = b;
			}
コード例 #3
0
ファイル: Line.cs プロジェクト: gregorypilar/interlace
 public Line(string text, LineClassification classification, int classificationLevel)
 {
     _text = text;
     _classification = classification;
     _classificationLevel = classificationLevel;
 }