コード例 #1
0
        public Rechte()
            : base(Vorm_type.Rechte)
        {
            punt1 = new Punt();
            punt2 = new Punt();

            glyphs.Add(new PuntGlyph(punt1));
            glyphs.Add(new PuntGlyph(punt2));
        }
コード例 #2
0
        public Cirkel()
            : base(Vorm_type.Cirkel)
        {
            m = new Punt();
            o = new Punt();

            glyphs.Add(new PuntGlyph(m));
            glyphs.Add(new PuntGlyph(o));
        }
コード例 #3
0
 public PuntGlyph(Punt p)
 {
     this.p = p;
 }