예제 #1
0
파일: Glyphs.cs 프로젝트: ernado-legacy/Owl
        public void StartCreatingIn(Point point)
        {
            Figure = new UnclosedPathFigure {
                Layout = ParentVectorRedactor.Layout
            };
            ParentVectorRedactor.Layout.AddFigure(Figure);
            (Figure as UnclosedPathFigure).AddPoint(point);
            (Figure as UnclosedPathFigure).AddPoint(point);
            (Figure as UnclosedPathFigure).UpdatePath();

            Invalidate();
        }
예제 #2
0
파일: Glyphs.cs 프로젝트: ernado/Owl
        public void StartCreatingIn(Point point)
        {
            Figure = new UnclosedPathFigure {Layout = ParentVectorRedactor.Layout};
            ParentVectorRedactor.Layout.AddFigure(Figure);
            (Figure as UnclosedPathFigure).AddPoint(point);
            (Figure as UnclosedPathFigure).AddPoint(point);
            (Figure as UnclosedPathFigure).UpdatePath();

            Invalidate();
        }
예제 #3
0
파일: Glyphs.cs 프로젝트: ernado-legacy/Owl
 public PathGlyph(GlyphConfig config)
 {
     Config = config;
     Figure = new UnclosedPathFigure();
 }
예제 #4
0
파일: Glyphs.cs 프로젝트: ernado/Owl
 public PathGlyph(GlyphConfig config)
 {
     Config = config;
     Figure = new UnclosedPathFigure();
 }