Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authormano-wii <germano.costa@ig.com.br>2017-07-11 20:22:07 +0300
committermano-wii <germano.costa@ig.com.br>2017-07-11 20:22:07 +0300
commitb3f62b68a916820e0e9eddf9855eea383c291fc4 (patch)
tree7e75cad9010167b681c91d740b65219d37384816 /source
parentdd1edb0954b5441255b5a3616841228f466e448e (diff)
Style (remove characters that caused "a binary file")
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/transform/transform_snap_object.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/transform/transform_snap_object.c b/source/blender/editors/transform/transform_snap_object.c
index 30cdae416e6..15839de32db 100644
--- a/source/blender/editors/transform/transform_snap_object.c
+++ b/source/blender/editors/transform/transform_snap_object.c
@@ -793,7 +793,7 @@ static bool raycastObj(
}
else {
/* in this case we want the mesh from the editmesh, avoids stale data. see: T45978.
- * still set the 'em' to NULL, since we only want the 'dm'. */
+ * still set the 'em' to NULL, since we only want the 'dm'. */
DerivedMesh *dm;
em = BKE_editmesh_from_object(ob);
if (em) {
@@ -827,13 +827,13 @@ static bool raycastObj(
* Main RayCast Function
* ======================
*
- * Walks through all objects in the scene to find the ´hit´ on object surface.
+ * Walks through all objects in the scene to find the `hit` on object surface.
*
* \param sctx: Snap context to store data.
- * \param snapdata: struct generated in `get_snapdata`.
+ * \param snapdata: struct generated in `set_snapdata`.
* \param snap_select : from enum SnapSelect.
* \param use_object_edit_cage : Uses the coordinates of BMesh(if any) to do the snapping.
- * \param obj_list: List with objects to snap (created in ´create_object_list´).
+ * \param obj_list: List with objects to snap (created in `create_object_list`).
*
* Read/Write Args
* ---------------