123456789101112131415161718192021222324252627282930313233 |
- #ifndef IGL_LINE_SEGMENT_IN_RECTANGLE_H
- #define IGL_LINE_SEGMENT_IN_RECTANGLE_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
-
-
-
-
-
-
-
-
- IGL_INLINE bool line_segment_in_rectangle(
- const Eigen::Vector2d & s,
- const Eigen::Vector2d & d,
- const Eigen::Vector2d & A,
- const Eigen::Vector2d & B);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "line_segment_in_rectangle.cpp"
- #endif
- #endif
|