Ejemplo n.º 1
0
Archivo: Symbol.cs Proyecto: jonc/carto
        float rotation; // angle in dgrees symbol is rotated.

        #endregion Fields

        #region Constructors

        public PointSymbol(PointSymDef def, PointF location, float angle, float[] gaps)
        {
            this.def = def; this.location = location;
            this.rotation = angle;
            this.gaps = gaps;
            boundingBox = def.CalcBounds(location, rotation);
        }