Skip to content

Commit

Permalink
Removed temporary test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Nov 28, 2024
1 parent e079530 commit bf4790c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 0 additions & 2 deletions include/vsg/nodes/CoordinateFrame.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ namespace vsg
dvec3 origin;
dquat rotation;

ldvec3 temp_ldvec3;

dmat4 transform(const dmat4& mv) const override;

public:
Expand Down
6 changes: 1 addition & 5 deletions src/vsg/nodes/CoordinateFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ CoordinateFrame::CoordinateFrame(const CoordinateFrame& rhs, const CopyOp& copyo
Inherit(rhs, copyop),
name(rhs.name),
origin(rhs.origin),
rotation(rhs.rotation),
temp_ldvec3(rhs.temp_ldvec3)
rotation(rhs.rotation)
{
}

Expand All @@ -38,7 +37,6 @@ int CoordinateFrame::compare(const Object& rhs_object) const
const auto& rhs = static_cast<decltype(*this)>(rhs_object);
if ((result = compare_value(name, rhs.name)) != 0) return result;
if ((result = compare_value(origin, rhs.origin)) != 0) return result;
if ((result = compare_value(temp_ldvec3, rhs.temp_ldvec3)) != 0) return result;
return compare_value(rotation, rhs.rotation);
}

Expand All @@ -48,7 +46,6 @@ void CoordinateFrame::read(Input& input)
input.read("name", name);
input.read("origin", origin);
input.read("rotation", rotation);
input.read("temp_ldvec3", temp_ldvec3);
input.read("subgraphRequiresLocalFrustum", subgraphRequiresLocalFrustum);
input.readObjects("children", children);
}
Expand All @@ -59,7 +56,6 @@ void CoordinateFrame::write(Output& output) const
output.write("name", name);
output.write("origin", origin);
output.write("rotation", rotation);
output.write("temp_ldvec3", temp_ldvec3);
output.write("subgraphRequiresLocalFrustum", subgraphRequiresLocalFrustum);
output.writeObjects("children", children);
}
Expand Down

0 comments on commit bf4790c

Please sign in to comment.