IMP logo
IMP Reference Guide  develop.eb1b99edaa,2026/06/22
The Integrative Modeling Platform
Segment3D.h
Go to the documentation of this file.
1 /**
2  * \file IMP/algebra/Segment3D.h
3  * \brief Simple implementation of segments in 3D
4  *
5  * Copyright 2007-2026 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPALGEBRA_SEGMENT_3D_H
9 #define IMPALGEBRA_SEGMENT_3D_H
10 
11 #include <IMP/algebra/algebra_config.h>
12 #include "Vector3D.h"
13 #include "BoundingBoxD.h"
15 #include <iostream>
16 #include <cereal/access.hpp>
17 #include "constants.h"
18 
19 IMPALGEBRA_BEGIN_NAMESPACE
20 //! Simple implementation of segments in 3D
21 /** A line segment is defined by a start and end point (as Vector3D).
22  \geometry
23  */
24 class IMPALGEBRAEXPORT Segment3D : public GeometricPrimitiveD<3> {
25  public:
26  Segment3D() {}
27  Segment3D(const Vector3D &start, const Vector3D &end);
28  //! Get the start (i==0) or end (i==1) point of the segment
29  const Vector3D &get_point(unsigned int i) const {
30  IMP_INTERNAL_CHECK(i < 2, "Invalid point index");
31  return p_[i];
32  }
33  Vector3D get_middle_point() const { return .5 * p_[0] + .5 * p_[1]; }
34  //! Get a normalized direction vector from get_point(0) to get_point(1).
35  Vector3D get_direction() const { return (p_[1] - p_[0]).get_unit_vector(); }
36  double get_length() const;
38  { out << spaces_io(p_[0]) << ": " << spaces_io(p_[1]); });
39 
40  private:
41  Vector3D p_[2];
42 
43  friend class cereal::access;
44 
45  template<class Archive> void serialize(Archive &ar) {
46  ar(p_[0], p_[1]);
47  }
48 };
49 
50 IMP_LINEAR_GEOMETRY_METHODS(Segment3D, segment_3d,
51  return BoundingBoxD<3>(g.get_point(0)) +
52  BoundingBoxD<3>(g.get_point(1)));
53 
54 //! Return the 'relative' projection of a point p onto the line that contains s.
55 /** Formally, the projection of p onto the line through s is s[0]+f*(s[1]-s[0])
56  f is in the range [0..1] if the projection of p is inside s.
57 
58  @param s segment in 3D
59  @param p point in 3D
60 
61  @return the 'relative' projection of p onto the line containing s
62 */
63 IMPALGEBRAEXPORT double get_relative_projection_on_segment(
64  const Segment3D &s, const algebra::Vector3D &p);
65 
66 //! Get the distance between a segment and a point
67 /** \see Segment3D */
68 IMPALGEBRAEXPORT double get_distance(const Segment3D &s, const Vector3D &p);
69 
70 //! Get the distance between two segments
71 /** \see Segment3D */
72 IMPALGEBRAEXPORT double get_distance(const Segment3D &a, const Segment3D &b);
73 
74 IMPALGEBRA_END_NAMESPACE
75 
76 #endif /* IMPALGEBRA_SEGMENT_3D_H */
Base class for geometric types.
double get_distance(const Segment3D &a, const Segment3D &b)
Get the distance between two segments.
#define IMP_SHOWABLE_INLINE(Name, how_to_show)
Declare the methods needed by an object that can be printed.
#define IMP_LINEAR_GEOMETRY_METHODS(Name, name, bounding_box)
Implement the needed namespace methods for a geometry type.
#define IMP_INTERNAL_CHECK(expr, message)
An assertion to check for internal errors in IMP. An IMP::ErrorException will be thrown.
Definition: check_macros.h:139
Vector3D get_direction() const
Get a normalized direction vector from get_point(0) to get_point(1).
Definition: Segment3D.h:35
VectorD< 3 > Vector3D
Definition: VectorD.h:407
A bounding box in D dimensions.
Base class for geometric types.
Simple 3D vector class.
Various useful constants.
Simple implementation of segments in 3D.
Definition: Segment3D.h:24
double get_relative_projection_on_segment(const Segment3D &s, const algebra::Vector3D &p)
Return the 'relative' projection of a point p onto the line that contains s.
const Vector3D & get_point(unsigned int i) const
Get the start (i==0) or end (i==1) point of the segment.
Definition: Segment3D.h:29