cp-documentation

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

View the Project on GitHub zawa-tin/cp-documentation

:heavy_check_mark: Src/GeometryZ2/Contain/State.hpp

Required by

Verified with

Code

#pragma once

namespace zawa {

namespace geometryZ2 {

enum ContainState {
    INSIDE          = 0,
    ONLINE          = 1,
    OUTSIDE         = 2
};

} // namespace geometryZ2

} // namespace zawa
#line 2 "Src/GeometryZ2/Contain/State.hpp"

namespace zawa {

namespace geometryZ2 {

enum ContainState {
    INSIDE          = 0,
    ONLINE          = 1,
    OUTSIDE         = 2
};

} // namespace geometryZ2

} // namespace zawa
Back to top page