~corrado-maurini/dolfin/tao

« back to all changes in this revision

Viewing changes to dolfin/mesh/MeshTransformation.h

  • Committer: corrado maurini
  • Date: 2012-12-18 12:16:08 UTC
  • mfrom: (6685.78.207 trunk)
  • Revision ID: corrado.maurini@upmc.fr-20121218121608-nk82ly9jgsld9u84
updating with trunk, fix uint in TAO solver and hacking the check for tao FindTAO.cmake

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    ///         The mesh
45
45
    ///     angle (double)
46
46
    ///         The number of degrees (0-360) of rotation
47
 
    ///     axis (uint)
 
47
    ///     axis (std::size_t)
48
48
    ///         The coordinate axis around which to rotate the mesh
49
 
    static void rotate(Mesh& mesh, double angle, uint axis);
 
49
    static void rotate(Mesh& mesh, double angle, std::size_t axis);
50
50
 
51
51
    /// Rotate mesh around a coordinate axis through a given point
52
52
    ///
55
55
    ///         The mesh
56
56
    ///     angle (double)
57
57
    ///         The number of degrees (0-360) of rotation
58
 
    ///     axis (uint)
 
58
    ///     axis (std::size_t)
59
59
    ///         The coordinate axis around which to rotate the mesh
60
60
    ///     point (_Point_)
61
61
    ///         The point around which to rotate the mesh
62
 
    static void rotate(Mesh& mesh, double angle, uint axis, const Point& p);
 
62
    static void rotate(Mesh& mesh, double angle, std::size_t axis, const Point& p);
63
63
 
64
64
  };
65
65