From 221849e3005d9fa5ba074efb4703b582e6386926 Mon Sep 17 00:00:00 2001 From: Rajeev Jain Date: Fri, 21 Oct 2016 20:40:07 -0500 Subject: [PATCH] o Fix doxygen documentation params --- itaps/fbigeom/FBiGeom.h | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/itaps/fbigeom/FBiGeom.h b/itaps/fbigeom/FBiGeom.h index 37252eeb..dead5bee 100644 --- a/itaps/fbigeom/FBiGeom.h +++ b/itaps/fbigeom/FBiGeom.h @@ -2686,31 +2686,49 @@ extern "C" { * * Reflect an entity across the given plane * \param instance FBiGeom instance handle - * \param geom_entity the entity to reflect, x, y, z coordinate of the point that the reflecting plane goes though + * \param geom_entity the entity to reflect, + * \param point_x x coordinate of the point that the reflecting plane goes though + * \param point_y y coordinate of the point that the reflecting plane goes +though + * \param point_z z coordinate of the point that the reflecting plane goes +though * \param plane_normal_x x coordinate of the plane's normal * \param plane_normal_y y coordinate of the plane's normal * \param plane_normal_z z coordinate of the plane's normal * \param *err Pointer to error type returned from function */ void FBiGeom_reflectEnt( FBiGeom_Instance instance, - iBase_EntityHandle geom_entity, - double x, double y, double z, double norm_x, double norm_y, - double norm_z,int* err ); + iBase_EntityHandle geom_entity, + double x, + double y, + double z, + double plane_normal_x, + double plane_normal_y, + double plane_normal_z, + int* err ); /**\brief Scale an entity in the x, y, and z directions * * Scale an entity in the x, y, and z directions. * \param instance FBiGeom instance handle - * \param geom_entity the entity to scale, x, y, z coordinate of the point that the scale plane goes though + * \param geom_entity the entity to scale, + * \param point_x x coordinate of the scaling center + * \param point_y y coordinate of the scaling center + * \param point_z z coordinate of the scaling center * \param scale_x factor to scale by in the x direction * \param scale_y factor to scale by in the y direction * \param scale_z factor to scale by in the z direction * \param *err Pointer to error type returned from function */ void FBiGeom_scaleEnt( FBiGeom_Instance instance, - iBase_EntityHandle geom_entity, - double x, double y, double z, double x_factor, - double y_factor, double z_factor, int* err ); + iBase_EntityHandle geom_entity, + double x, + double y, + double z, + double scale_x, + double scale_y, + double scale_z, + int* err ); /**\brief Geometrically unite entities * -- GitLab