Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Math vector array data #75

Merged
merged 1 commit into from
Aug 1, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions SW2URDF/URDFExport/ExportHelperExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ public Boolean EstimateGlobalJointFromComponents(AssemblyDoc assy, Link parent,
out int L2Status, out MathVector LDir2);
if (RPoint1 != null)
{
logger.Info("R1: " + R1Status + ", " + RPoint1 + ", " + R1DirStatus + ", " + RDir1.get_IArrayData());
logger.Info("R1: " + R1Status + ", " + RPoint1 + ", " + R1DirStatus + ", " + RDir1.ArrayData);
}
else
{
Expand All @@ -837,23 +837,23 @@ public Boolean EstimateGlobalJointFromComponents(AssemblyDoc assy, Link parent,

if (RPoint2 != null)
{
logger.Info("R2: " + R2Status + ", " + RPoint2 + ", " + R2DirStatus + ", " + RDir2.get_IArrayData());
logger.Info("R2: " + R2Status + ", " + RPoint2 + ", " + R2DirStatus + ", " + RDir2.ArrayData);
}
else
{
logger.Info("R2: " + R2Status + ", " + R2DirStatus);
}
if (LDir1 != null)
{
logger.Info("L1: " + L1Status + ", " + LDir1.get_IArrayData());
logger.Info("L1: " + L1Status + ", " + LDir1.ArrayData);
}
else
{
logger.Info("L1: " + L1Status);
}
if (LDir2 != null)
{
logger.Info("L2: " + ", " + LDir2.get_IArrayData());
logger.Info("L2: " + ", " + LDir2.ArrayData);
}
else
{
Expand Down