home
about
news
download
doc
source
systems
tests
bugs
contact
IMP Reference Guide
2.6.1
The Integrative Modeling Platform
IMP Manual
Reference Guide
Modules
Classes
Examples
include
IMP
core
core/utility.h
Go to the documentation of this file.
1
/**
2
* \file IMP/core/utility.h \brief Various important functionality
3
* for implementing decorators.
4
*
5
* Copyright 2007-2016 IMP Inventors. All rights reserved.
6
*
7
*/
8
9
#ifndef IMPCORE_UTILITY_H
10
#define IMPCORE_UTILITY_H
11
12
#include <IMP/core/core_config.h>
13
#include "
XYZR.h
"
14
#include <
IMP/base_types.h
>
15
#include <
IMP/algebra/Segment3D.h
>
16
#include <
IMP/algebra/Transformation3D.h
>
17
#include <
IMP/Model.h
>
18
#include <
IMP/Particle.h
>
19
20
IMPCORE_BEGIN_NAMESPACE
21
//! Get the centroid
22
/** Compute the centroid (mean) of a set of particles.
23
*/
24
IMPCOREEXPORT
algebra::Vector3D
get_centroid
(
const
XYZs &ps);
25
26
//! Get the bounding box
27
/** Compute the bounding box of a set of particles
28
*/
29
IMPCOREEXPORT algebra::BoundingBoxD<3>
get_bounding_box
(
const
XYZRs &ps);
30
31
IMPCORE_END_NAMESPACE
32
33
#endif
/* IMPCORE_UTILITY_H */
base_types.h
Basic types used by IMP.
Model.h
Storage of a model, its restraints, constraints and particles.
IMP::core::get_centroid
algebra::Vector3D get_centroid(const XYZs &ps)
Get the centroid.
Segment3D.h
Simple implementation of segments in 3D.
IMP::algebra::Cone3D::get_bounding_box
BoundingBoxD< 3 > get_bounding_box(const Cone3D &g)
Definition:
Cone3D.h:64
Transformation3D.h
Simple 3D transformation class.
Particle.h
Classes to handle individual model particles. (Note that implementation of inline functions is in int...
IMP::algebra::Vector3D
VectorD< 3 > Vector3D
Definition:
VectorD.h:395
XYZR.h
Decorator for a sphere-like particle.