Example #1
0
        public GraphicNode(String tag, String path, Guid modelGuid, Stencil stencil, Rectangle boundingRect,
                           Double angle, Rectangle tagArea, Double tagAngle, Font tagFont, Boolean tagVisible, Double opacity,
                           System.Drawing.Color fillColor, FillMode fillMode, bool mirrorX, bool mirrorY)
            : base(tag, tagArea, tagAngle, tagFont, tagVisible, opacity)
        {
            this.path = path;

            this.modelGuid = modelGuid;
            this.stencil   = stencil;

            this.boundingRect = boundingRect;
            this.angle        = angle;

            this.fillColor = fillColor;
            this.fillMode  = fillMode;
            this.mirrorX   = mirrorX;
            this.mirrorY   = mirrorY;
        }
Example #2
0
    public GraphicNode(String tag, String path, Guid modelGuid, Stencil stencil, Rectangle boundingRect,
      Double angle, Rectangle tagArea, Double tagAngle, Font tagFont, Boolean tagVisible, Double opacity,
      System.Drawing.Color fillColor, FillMode fillMode, bool mirrorX, bool mirrorY)
      : base(tag, tagArea, tagAngle, tagFont, tagVisible, opacity)
    {
      this.path = path;

      this.modelGuid = modelGuid;
      this.stencil = stencil;

      this.boundingRect = boundingRect;
      this.angle = angle;

      this.fillColor = fillColor;
      this.fillMode = fillMode;
      this.mirrorX = mirrorX;
      this.mirrorY = mirrorY;
    }