IMP logo
IMP Reference Guide  develop.7400db2aee,2024/11/24
The Integrative Modeling Platform
randomize.py
1 # Python files placed in this src directory are automatically added to
2 # the IMP.example module, each as a submodule.
3 #
4 # i.e. the function below can be accessed as
5 # IMP.example.randomize.randomize_particle().
6 
7 
8 import IMP.core
9 import IMP.algebra
10 
11 def randomize_particle(p):
12  d = IMP.core.XYZ(p)
13  d.set_coordinates(IMP.algebra.get_random_vector_in(
14  IMP.algebra.get_unit_bounding_box_3d()))
Vector3D get_random_vector_in(const Cylinder3D &c)
Generate a random vector in a cylinder with uniform density.
A decorator for a particle with x,y,z coordinates.
Definition: XYZ.h:30
Basic functionality that is expected to be used by a wide variety of IMP users.
General purpose algebraic and geometric methods that are expected to be used by a wide variety of IMP...