You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@farfromrefug Can you please modify the function this way in canvas.ios.ts?
publicmapPoints(...args){
let src: number[];
let dstIndex: number=0,srcIndex: number=0,pointCount: number;constpts: number[]=args[0];if(args.length<=2){src=args[args.length-1];}else{dstIndex=args[1]||0;srcIndex=args[3]||0;pointCount=args[4];src=args[2];}src=src||pts;pointCount=Math.floor(pointCount||src.length);for(letindex=0;index<pointCount;index+=2){constcgPoint=CGPointApplyAffineTransform(CGPointMake(src[index+srcIndex],src[index+srcIndex+1]),this._transform);pts[index+dstIndex]=cgPoint.x;pts[index+dstIndex+1]=cgPoint.y;}}
The text was updated successfully, but these errors were encountered:
@farfromrefug Can you please modify the function this way in canvas.ios.ts?
The text was updated successfully, but these errors were encountered: