Renamed plane's d to distance
This commit is contained in:
parent
ff5dfcdf68
commit
ec7b481170
36 changed files with 126 additions and 126 deletions
|
|
@ -1551,7 +1551,7 @@ Error VariantWriter::write(const Variant &p_variant, StoreStringFunc p_store_str
|
|||
case Variant::PLANE: {
|
||||
|
||||
Plane p = p_variant;
|
||||
p_store_string_func(p_store_string_ud, "Plane( " + rtosfix(p.normal.x) + ", " + rtosfix(p.normal.y) + ", " + rtosfix(p.normal.z) + ", " + rtosfix(p.d) + " )");
|
||||
p_store_string_func(p_store_string_ud, "Plane( " + rtosfix(p.normal.x) + ", " + rtosfix(p.normal.y) + ", " + rtosfix(p.normal.z) + ", " + rtosfix(p.distance) + " )");
|
||||
|
||||
} break;
|
||||
case Variant::AABB: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue