2016-06-09 68 views

回答

0

它線性擴展,這樣的功能將類似於:

Point2f getNewCoords(Point2f oldPoint, Size oldSize, Size newSize) { 
    return Point2f(oldPoint.x * newSize.width/oldSize.width, 
        oldPoint.y * newSize.height/oldSize.height) 
} 
相關問題