procon

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub mugen1337/procon

:warning: Geometry/Rotate.hpp

Required by

Code

Point rotate(Real theta,Point p){
    return Point(cos(theta)*real(p)-sin(theta)*imag(p),sin(theta)*real(p)+cos(theta)*imag(p));
}
#line 1 "Geometry/Rotate.hpp"
Point rotate(Real theta,Point p){
    return Point(cos(theta)*real(p)-sin(theta)*imag(p),sin(theta)*real(p)+cos(theta)*imag(p));
}
Back to top page