public void SetClip(IGraphicsPath path)
 {
     RewindTransform();
     RewindClip();
     clipBounds = null;
     clipPath   = path.Clone();
     clipPath.Transform(currentTransform.ToEto());
     ApplyClip();
     ApplyTransform();
 }