// コンストラクター protected Line(LineGroup parent, Apex begin, Apex end) { this.Parent = parent; this.Begin = begin; this.End = end; }
// メソッド protected internal abstract Line CreateLine(LineGroup polygon, Apex begin, Apex end);