Exemplo n.º 1
0
 public IScriptableSvgMatrix getTransformToElement(IScriptableSvgElement element)
 {
     object result = ((ISvgLocatable)baseObject).GetTransformToElement(((ISvgElement)((ScriptableSvgElement)element).baseObject));
         return (result != null) ? (IScriptableSvgMatrix)ScriptableObject.CreateWrapper(result) : null;
 }
Exemplo n.º 2
0
 public bool checkIntersection(IScriptableSvgElement element, IScriptableSvgRect rect)
 {
     return ((ISvgSvgElement)baseObject).CheckIntersection(((ISvgElement)((ScriptableSvgElement)element).baseObject), ((ISvgRect)((ScriptableSvgRect)rect).baseObject));
 }
Exemplo n.º 3
0
 public IScriptableNodeList getIntersectionList(IScriptableSvgRect rect, IScriptableSvgElement referenceElement)
 {
     object result = ((ISvgSvgElement)baseObject).GetIntersectionList(((ISvgRect)((ScriptableSvgRect)rect).baseObject), ((ISvgElement)((ScriptableSvgElement)referenceElement).baseObject));
         return (result != null) ? (IScriptableNodeList)ScriptableObject.CreateWrapper(result) : null;
 }
Exemplo n.º 4
0
 public bool checkEnclosure(IScriptableSvgElement element, IScriptableSvgRect rect)
 {
     return ((ISvgSvgElement)baseObject).CheckEnclosure(((ISvgElement)((ScriptableSvgElement)element).baseObject), ((ISvgRect)((ScriptableSvgRect)rect).baseObject));
 }