procon

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

View the Project on GitHub mugen1337/procon

:warning: Geometry/Cross.hpp

Required by

Code

// Cross
Real cross(Point a,Point b){
    return real(a)*imag(b)-imag(a)*real(b);
}
#line 1 "Geometry/Cross.hpp"
// Cross
Real cross(Point a,Point b){
    return real(a)*imag(b)-imag(a)*real(b);
}
Back to top page