Cleanup: Fix various source typos

This is a continuation of D13462 to clean up source typos.

Differential Revision: https://developer.blender.org/D13471
This commit is contained in:
luzpaz
2021-12-06 22:31:05 -05:00
committed by Aaron Carlisle
parent 92dae5775f
commit f159d49f56
4 changed files with 10 additions and 10 deletions

View File

@@ -630,7 +630,7 @@ void BKE_mesh_origindex_map_create_looptri(MeshElemMap **r_map,
typedef bool (*MeshRemap_CheckIslandBoundary)(const struct MPoly *mpoly, typedef bool (*MeshRemap_CheckIslandBoundary)(const struct MPoly *mpoly,
const struct MLoop *mloop, const struct MLoop *mloop,
const struct MEdge *medge, const struct MEdge *medge,
const int nbr_egde_users, const int nbr_edge_users,
const struct MPoly *mpoly_array, const struct MPoly *mpoly_array,
const struct MeshElemMap *edge_poly_map, const struct MeshElemMap *edge_poly_map,
void *user_data); void *user_data);
@@ -833,14 +833,14 @@ static void poly_edge_loop_islands_calc(const MEdge *medge,
static bool poly_is_island_boundary_smooth_cb(const MPoly *mp, static bool poly_is_island_boundary_smooth_cb(const MPoly *mp,
const MLoop *UNUSED(ml), const MLoop *UNUSED(ml),
const MEdge *me, const MEdge *me,
const int nbr_egde_users, const int nbr_edge_users,
const MPoly *mpoly_array, const MPoly *mpoly_array,
const MeshElemMap *edge_poly_map, const MeshElemMap *edge_poly_map,
void *UNUSED(user_data)) void *UNUSED(user_data))
{ {
/* Edge is sharp if one of its polys is flat, or edge itself is sharp, /* Edge is sharp if one of its polys is flat, or edge itself is sharp,
* or edge is not used by exactly two polygons. */ * or edge is not used by exactly two polygons. */
if ((mp->flag & ME_SMOOTH) && !(me->flag & ME_SHARP) && (nbr_egde_users == 2)) { if ((mp->flag & ME_SMOOTH) && !(me->flag & ME_SHARP) && (nbr_edge_users == 2)) {
/* In that case, edge appears to be smooth, but we need to check its other poly too. */ /* In that case, edge appears to be smooth, but we need to check its other poly too. */
const MPoly *mp_other = (mp == &mpoly_array[edge_poly_map->indices[0]]) ? const MPoly *mp_other = (mp == &mpoly_array[edge_poly_map->indices[0]]) ?
&mpoly_array[edge_poly_map->indices[1]] : &mpoly_array[edge_poly_map->indices[1]] :
@@ -1012,7 +1012,7 @@ typedef struct MeshCheckIslandBoundaryUv {
static bool mesh_check_island_boundary_uv(const MPoly *UNUSED(mp), static bool mesh_check_island_boundary_uv(const MPoly *UNUSED(mp),
const MLoop *ml, const MLoop *ml,
const MEdge *me, const MEdge *me,
const int UNUSED(nbr_egde_users), const int UNUSED(nbr_edge_users),
const MPoly *UNUSED(mpoly_array), const MPoly *UNUSED(mpoly_array),
const MeshElemMap *UNUSED(edge_poly_map), const MeshElemMap *UNUSED(edge_poly_map),
void *user_data) void *user_data)

View File

@@ -50,10 +50,10 @@ float circle_to_polygon_angle(float sides_count, float theta)
float ratio = (local_theta - halfside_angle) / halfside_angle; float ratio = (local_theta - halfside_angle) / halfside_angle;
float halfside_len = polygon_sides_length(sides_count) * 0.5; float halfside_len = polygon_sides_length(sides_count) * 0.5;
float oposite = ratio * halfside_len; float opposite = ratio * halfside_len;
/* NOTE: atan(y_over_x) has output range [-M_PI_2..M_PI_2]. */ /* NOTE: atan(y_over_x) has output range [-M_PI_2..M_PI_2]. */
float final_local_theta = atan(oposite / adjacent); float final_local_theta = atan(opposite / adjacent);
return side * side_angle + final_local_theta; return side * side_angle + final_local_theta;
} }

View File

@@ -515,7 +515,7 @@ std::unique_ptr<ColumnValues> VolumeDataSource::get_column_values(
r_cell_value.value_string = IFACE_("Level Set"); r_cell_value.value_string = IFACE_("Level Set");
} }
else { else {
r_cell_value.value_string = IFACE_("Unkown"); r_cell_value.value_string = IFACE_("Unknown");
} }
}, },
5.0f); 5.0f);

View File

@@ -614,7 +614,7 @@ static bool rna_property_override_operation_apply(Main *bmain,
} }
/* get and set the default values as appropriate for the various types */ /* get and set the default values as appropriate for the various types */
const bool sucess = override_apply(bmain, const bool success = override_apply(bmain,
ptr_dst, ptr_dst,
ptr_src, ptr_src,
ptr_storage, ptr_storage,
@@ -628,11 +628,11 @@ static bool rna_property_override_operation_apply(Main *bmain,
ptr_item_src, ptr_item_src,
ptr_item_storage, ptr_item_storage,
opop); opop);
if (sucess) { if (success) {
RNA_property_update_main(bmain, NULL, ptr_dst, prop_dst); RNA_property_update_main(bmain, NULL, ptr_dst, prop_dst);
} }
return sucess; return success;
} }
/** /**