Example #1
0
 private void ParseDefineShape3Tag(DefineShape3Tag tag)
 {
     ParseShapeWithStyle(tag.Shapes);
 }
Example #2
0
		private void ParseDefineShape3Tag(DefineShape3Tag tag)
		{
			curSymbol = new Symbol(v.NextId());

			curSymbol.StrokeBounds = ParseRect(tag.ShapeBounds);
			curSymbol.Id = tag.ShapeId;
			v.Definitions.Add(curSymbol.Id, curSymbol);

			ParseShapeWithStyle(tag.Shapes);
		}