Ejemplo n.º 1
0
        public static WavefrontFormat DrawCurve(this WavefrontFormat wf,
                                                string color,
                                                ICurve2 curve,
                                                int count = 100)
        {
            wf.UseMaterial(color);
            if (curve is ComposedCurve2)
            {
                int            i        = 0;
                ComposedCurve2 composed = (ComposedCurve2)curve;
                foreach (ICurve2 segment in composed.GetSegments())
                {
                    /*Vec2d pt = segment.GetPosition(segment.TMin);
                     * wf.DrawFigure(color, WaveFigure.X, pt, 1);
                     * wf.DrawString(color, pt, FontFamily.GenericSerif, FontStyle.Regular, 1000, "" + (i++));*/

                    //if (segment is CircleArc2)
                    {
                        wf.AddLines(MathUtils.For(segment.TMin, segment.TMax, count).Select(segment.GetPosition), false);
                    }
                }

                /*if (!curve.IsClosed)
                 * {
                 *  Vec2d pt = curve.GetPosition(curve.TMax);
                 *  wf.DrawFigure(color, WaveFigure.X, pt, 1);
                 *  wf.DrawString(color, pt, FontFamily.GenericSerif, FontStyle.Regular, 1000, "" + (i++));
                 * }*/
            }
            else
            {
                wf.AddLines(MathUtils.For(curve.TMin, curve.TMax, count).Select(curve.GetPosition), false);
            }
            return(wf);
        }
Ejemplo n.º 2
0
        private static void DrawPath(this WavefrontFormat wf, GraphicsPath path)
        {
            byte[]   types    = path.PathData.Types;
            PointF[] points   = path.PathData.Points;
            FillMode fillMode = path.FillMode;

            List <Vec2d> _points = new List <Vec2d>();

            for (int i = 0; i < types.Length; i++)
            {
                PathPointType tipo = (PathPointType)types[i] & PathPointType.PathTypeMask;
                switch (tipo)
                {
                case PathPointType.Start:
                {
                    _points.Add(new Vec2d(points[i].X, points[i].Y));
                    break;
                }

                case PathPointType.Line:
                {
                    _points.Add(new Vec2d(points[i].X, points[i].Y));
                    break;
                }

                case PathPointType.Bezier3:
                {
                    // NOTA: se pintará una bezier en breve.
                    _points.Add(new Vec2d(points[i].X, points[i].Y));
                    i++;
                    _points.Add(new Vec2d(points[i].X, points[i].Y));
                    i++;
                    _points.Add(new Vec2d(points[i].X, points[i].Y));
                    break;
                }

                default:
                {
                    throw new IndexOutOfRangeException();
                }
                }

                // El ultimo tipo determina si hay que cerrar.
                bool cerrar = ((PathPointType)types[i] & PathPointType.CloseSubpath) == PathPointType.CloseSubpath;
                if (cerrar)
                {
                    if (_points.Count > 0)
                    {
                        wf.AddLines(_points, true);
                        _points.Clear();
                    }
                }
            }

            if (_points.Count > 0)
            {
                wf.AddLines(_points, false);
                _points.Clear();
            }
        }
Ejemplo n.º 3
0
        public static WavefrontFormat DrawClothoRadius(this WavefrontFormat wf,
                                                       bool invertY, double a,
                                                       string radiusColor)
        {
            List <int> indices = new List <int>();

            double lmax = ClothoUtils.GetMaxL(a);
            int    c    = 100;

            for (int i = -c; i <= c; i++)
            {
                double s = i * lmax / c;

                double r = ClothoUtils.ClothoRadious(s, invertY, a);
                if (double.IsInfinity(r))
                {
                    r = SysMath.Sign(r) * 1000;
                }

                int v0 = wf.AddVertex(new Vec2d(s, r));
                indices.Add(v0);

                //double dx, dy;
                //MathUtils.DClotho(s, r, a, out dx, out dy);
            }

            wf.UseMaterial(radiusColor);
            wf.AddLines(indices, false);
            return(wf);
        }
Ejemplo n.º 4
0
        public static WavefrontFormat DrawClotho(this WavefrontFormat wf,
                                                 bool invertY, double a,
                                                 string clothoColor)
        {
            List <int> indices = new List <int>();

            int c = 100;

            for (int i = -c; i <= c; i++)
            {
                double lmax = ClothoUtils.GetMaxL(a);
                double s    = i * lmax / c;

                double x, y;
                ClothoUtils.Clotho(s, invertY, a, out x, out y);

                int v0 = wf.AddVertex(new Vec2d(x, y));
                indices.Add(v0);

                //double dx, dy;
                //MathUtils.DClotho(s, r, a, out dx, out dy);
            }

            wf.UseMaterial(clothoColor);
            wf.AddLines(indices, false);
            return(wf);
        }
Ejemplo n.º 5
0
 public static WavefrontFormat DrawClotho(this WavefrontFormat wf,
                                          string color,
                                          ClothoidArc2 arc)
 {
     wf.UseMaterial(color);
     wf.AddLines(MathUtils.For(arc.TMin, arc.TMax, 10).Select(arc.GetPosition), false);
     return(wf);
 }
Ejemplo n.º 6
0
 public static WavefrontFormat DrawPolyline(this WavefrontFormat wf,
                                            string color,
                                            IEnumerable <Vec2d> points,
                                            bool close)
 {
     wf.UseMaterial(color);
     wf.AddLines(points, close);
     return(wf);
 }
Ejemplo n.º 7
0
        public static WavefrontFormat DrawLine(this WavefrontFormat wf,
                                               string color,
                                               Vec2d point,
                                               Vec2d v,
                                               double ext = 1000)
        {
            wf.UseMaterial(color);
            Vec2d p0 = point.Sub(v.Mul(ext));
            Vec2d p1 = point.Add(v.Mul(ext));

            wf.AddLines(new Vec2d[] { p0, p1 }, false);
            return(wf);
        }
Ejemplo n.º 8
0
        public static WavefrontFormat DrawClotho(this WavefrontFormat wf,
                                                 bool invertY, double a,
                                                 string clothoColor,
                                                 string dirColor,
                                                 string normalColor,
                                                 string radColor)
        {
            List <int> indices = new List <int>();
            List <Tuple <int, int> > normals = new List <Tuple <int, int> >();
            List <Tuple <int, int> > dirs    = new List <Tuple <int, int> >();
            List <Tuple <int, int> > radius  = new List <Tuple <int, int> >();

            int c = 100;

            for (int i = -c; i <= c; i++)
            {
                double lmax = ClothoUtils.GetMaxL(a);
                double s    = i * lmax / c;

                double x, y;
                ClothoUtils.Clotho(s, invertY, a, out x, out y);

                int v0 = wf.AddVertex(new Vec2d(x, y));
                indices.Add(v0);

                Vec2d n = ClothoUtils.ClothoLeftNormal(s, invertY, a).Norm();

                int v1 = wf.AddVertex(new Vec2d(x + n.X, y + n.Y));
                normals.Add(Tuple.Create(v0, v1));

                double dir = ClothoUtils.ClothoTangent(s, invertY, a);
                double dx  = SysMath.Cos(dir);
                double dy  = SysMath.Sin(dir);
                Vec2d  d   = new Vec2d(dx, dy).Norm();

                int v2 = wf.AddVertex(new Vec2d(x + 5 * d.X, y + 5 * d.Y));
                dirs.Add(Tuple.Create(v0, v2));

                double r = ClothoUtils.ClothoRadious(s, invertY, a);
                if (double.IsInfinity(r))
                {
                    r = SysMath.Sign(r) * 100;
                }

                int v3 = wf.AddVertex(new Vec2d(x + r * n.X, y + r * n.Y));
                radius.Add(Tuple.Create(v0, v3));

                //double dx, dy;
                //MathUtils.DClotho(s, r, a, out dx, out dy);
            }

            wf.UseMaterial(clothoColor);
            wf.AddLines(indices, false);

            wf.UseMaterial(normalColor);
            foreach (Tuple <int, int> normal in normals)
            {
                wf.AddLines(new[] { normal.Item1, normal.Item2 }, false);
            }

            wf.UseMaterial(dirColor);
            foreach (Tuple <int, int> dir in dirs)
            {
                wf.AddLines(new[] { dir.Item1, dir.Item2 }, false);
            }

            wf.UseMaterial(radColor);
            foreach (Tuple <int, int> rr in radius)
            {
                wf.AddLines(new[] { rr.Item1, rr.Item2 }, false);
            }
            return(wf);
        }
Ejemplo n.º 9
0
        public static WavefrontFormat DrawFigure(this WavefrontFormat wf,
                                                 string color,
                                                 WaveFigure figure,
                                                 Vec2d point,
                                                 double size)
        {
            wf.UseMaterial(color);
            switch (figure)
            {
            case WaveFigure.Circle:
            {
                wf.AddLines(MathUtils.For(0, 2 * SysMath.PI, 20).Select(t => point.Add(vecMath.NewRotate(t).Mul(size))), true);
                break;
            }

            case WaveFigure.Rectangle:
            {
                wf.AddLines(new Vec2d[]
                    {
                        point.Add(new Vec2d(size, size)),
                        point.Add(new Vec2d(-size, size)),
                        point.Add(new Vec2d(-size, -size)),
                        point.Add(new Vec2d(size, -size)),
                    }, true);
                break;
            }

            case WaveFigure.Diamond:
            {
                wf.AddLines(new Vec2d[]
                    {
                        point.Add(new Vec2d(0, size)),
                        point.Add(new Vec2d(-size, 0)),
                        point.Add(new Vec2d(0, -size)),
                        point.Add(new Vec2d(size, 0)),
                    }, true);
                break;
            }

            case WaveFigure.Plus:
            {
                wf.AddLines(new Vec2d[]
                    {
                        point.Add(new Vec2d(0, size)),
                        point.Add(new Vec2d(0, -size)),
                    }, false);
                wf.AddLines(new Vec2d[]
                    {
                        point.Add(new Vec2d(size, 0)),
                        point.Add(new Vec2d(-size, 0)),
                    }, false);
                break;
            }

            case WaveFigure.X:
            {
                wf.AddLines(new Vec2d[]
                    {
                        point.Add(new Vec2d(size, size)),
                        point.Add(new Vec2d(-size, -size)),
                    }, false);
                wf.AddLines(new Vec2d[]
                    {
                        point.Add(new Vec2d(-size, size)),
                        point.Add(new Vec2d(size, -size)),
                    }, false);
                break;
            }

            default:
            {
                throw new Exception();
            }
            }
            return(wf);
        }