jaulib v1.3.8
Jau Support Library (C++, Java, ..)
Loading...
Searching...
No Matches
geom.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com>
3 * Copyright Gothel Software e.K.
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 * This Source Code Form is subject to the terms of the MIT License
8 * If a copy of the MIT was not distributed with this file,
9 * you can obtain one at https://opensource.org/license/mit/.
10 */
11#ifndef JAU_MATH_GEOM_GEOM_HPP_
12#define JAU_MATH_GEOM_GEOM_HPP_
13
14namespace jau::math::geom {
15
16 /** \addtogroup Math
17 *
18 * @{
19 */
20
21 enum class orientation_t {
22 /** Collinear **/
24 /** Clockwise **/
26 /** Counter-Clockwise **/
28 };
29
30 /**@}*/
31
32} // namespace jau::math::geom
33
34#endif /* JAU_MATH_GEOM_GEOM_HPP_ */
@ CCW
Counter-Clockwise.
Definition geom.hpp:27