Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
printf("%10.2f %10.2f\n" (caar(bBox)+caadr(bBox))/2 (cadar(bBox)+cadadr(bBox))/2)
x1=caar(bBox)
x2=caadr(bBox)
y1=cadar(bBox)
y2=cadadr(bBox)
xc=(x1+x2)/2
yc=(y1+y2)/2
printf("%10.2f %10.2f\n" xc yc)
fp=outfile("PADLOC.txt")
foreach(shape cv~>shapes
bBox=shape~>bBox
x1=caar(bBox)
x2=caadr(bBox)
y1=cadar(bBox)
y2=cadadr(bBox)
xc=(x1+x2)/2
yc=(y1+y2)/2
fprintf(fp "%10.2f %10.2f\n" xc yc)
)
fclose(fp)
Hi pbs681,pbs681 said:Hughes,
There is nothing inside the file.
Thanks.
pbs681 said:Hi,
Is there any automated method to get the pad coordinate (center location).
Thanks