Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ebknudsen committed Aug 17, 2023
1 parent 0bdd517 commit eaaa26d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/double_down/RTI.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class RayTracingInterface {
//! \param uwv optional direction vector to be consistent across calls.
moab::ErrorCode find_volume(const double xyz[3],
moab::EntityHandle &volume,
const double *uwv = NULL);
const double *uvw = NULL);

//! \brief Calculates the solid angle of a polygon, \p face, with respect to \p point.
//! This method is adapted from "Point in Polyhedron Testing Using Spherical Polygons", Paulo Cezar
Expand Down
2 changes: 1 addition & 1 deletion src/RTI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ RayTracingInterface::point_in_volume(const moab::EntityHandle volume,
moab::ErrorCode
RayTracingInterface::find_volume(const double xyz[3],
moab::EntityHandle &volume,
const double *uwv = NULL)
const double *uvw = NULL)
{
moab::ErrorCode rval;
rval = moab::find_volume(xyz,volume,uvw);
Expand Down

0 comments on commit eaaa26d

Please sign in to comment.