Ejemplo n.º 1
0
        // BIG SURFACE
        public static CompileableComposite buildOrthonormalBig(OrthonormalGrid grid, Mapper mapper)
        {
            OrthonormalTessellator tesselator = new OrthonormalTessellator();
            Shape s1 = (Shape)tesselator.build(grid.Apply(mapper));

            return(buildComposite(applyStyling(s1)));
        }
Ejemplo n.º 2
0
        public static Shape buildOrthonomal(OrthonormalGrid grid, Mapper mapper)
        {
            OrthonormalTessellator tesselator = new OrthonormalTessellator();

            return((Shape)tesselator.build(grid.Apply(mapper)));
        }