Skip to content

Commit

Permalink
[Volumetric tests] Passing again
Browse files Browse the repository at this point in the history
  • Loading branch information
3dJan committed Oct 31, 2023
1 parent 24729d4 commit 0ac033b
Show file tree
Hide file tree
Showing 34 changed files with 431 additions and 401 deletions.
12 changes: 6 additions & 6 deletions Autogenerated/Bindings/C/lib3mf.h
Original file line number Diff line number Diff line change
Expand Up @@ -3234,10 +3234,10 @@ LIB3MF_DECLSPEC Lib3MFResult lib3mf_composevectornode_getinputz(Lib3MF_ComposeVe
* Retrieves the output
*
* @param[in] pComposeVectorNode - ComposeVectorNode instance.
* @param[out] pVector - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composevectornode_getoutputvector(Lib3MF_ComposeVectorNode pComposeVectorNode, Lib3MF_ImplicitPort * pVector);
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composevectornode_getoutputresult(Lib3MF_ComposeVectorNode pComposeVectorNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for DecomposeVectorNode
Expand Down Expand Up @@ -3431,10 +3431,10 @@ LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixnode_getinputm33(Lib3MF_Compose
* Retrieves the output
*
* @param[in] pComposeMatrixNode - ComposeMatrixNode instance.
* @param[out] pMatrix - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixnode_getoutputmatrix(Lib3MF_ComposeMatrixNode pComposeMatrixNode, Lib3MF_ImplicitPort * pMatrix);
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixnode_getoutputresult(Lib3MF_ComposeMatrixNode pComposeMatrixNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for ComposeMatrixFromRowVectorsNode
Expand Down Expand Up @@ -3480,10 +3480,10 @@ LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixfromrowvectorsnode_getinputrow3
* Retrieves the output
*
* @param[in] pComposeMatrixFromRowVectorsNode - ComposeMatrixFromRowVectorsNode instance.
* @param[out] pMatrix - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixfromrowvectorsnode_getoutputmatrix(Lib3MF_ComposeMatrixFromRowVectorsNode pComposeMatrixFromRowVectorsNode, Lib3MF_ImplicitPort * pMatrix);
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixfromrowvectorsnode_getoutputresult(Lib3MF_ComposeMatrixFromRowVectorsNode pComposeMatrixFromRowVectorsNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for ConstantNode
Expand Down
24 changes: 12 additions & 12 deletions Autogenerated/Bindings/CDynamic/lib3mf_dynamic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ Lib3MFResult InitLib3MFWrapperTable(sLib3MFDynamicWrapperTable * pWrapperTable)
pWrapperTable->m_ComposeVectorNode_GetInputX = NULL;
pWrapperTable->m_ComposeVectorNode_GetInputY = NULL;
pWrapperTable->m_ComposeVectorNode_GetInputZ = NULL;
pWrapperTable->m_ComposeVectorNode_GetOutputVector = NULL;
pWrapperTable->m_ComposeVectorNode_GetOutputResult = NULL;
pWrapperTable->m_DecomposeVectorNode_GetInputVector = NULL;
pWrapperTable->m_DecomposeVectorNode_GetOutputX = NULL;
pWrapperTable->m_DecomposeVectorNode_GetOutputY = NULL;
Expand All @@ -362,12 +362,12 @@ Lib3MFResult InitLib3MFWrapperTable(sLib3MFDynamicWrapperTable * pWrapperTable)
pWrapperTable->m_ComposeMatrixNode_GetInputM31 = NULL;
pWrapperTable->m_ComposeMatrixNode_GetInputM32 = NULL;
pWrapperTable->m_ComposeMatrixNode_GetInputM33 = NULL;
pWrapperTable->m_ComposeMatrixNode_GetOutputMatrix = NULL;
pWrapperTable->m_ComposeMatrixNode_GetOutputResult = NULL;
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetInputRow0 = NULL;
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetInputRow1 = NULL;
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetInputRow2 = NULL;
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetInputRow3 = NULL;
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetOutputMatrix = NULL;
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetOutputResult = NULL;
pWrapperTable->m_ConstantNode_SetConstant = NULL;
pWrapperTable->m_ConstantNode_GetConstant = NULL;
pWrapperTable->m_ConstantNode_GetOutputValue = NULL;
Expand Down Expand Up @@ -3310,12 +3310,12 @@ Lib3MFResult LoadLib3MFWrapperTable(sLib3MFDynamicWrapperTable * pWrapperTable,
return LIB3MF_ERROR_COULDNOTFINDLIBRARYEXPORT;

#ifdef _WIN32
pWrapperTable->m_ComposeVectorNode_GetOutputVector = (PLib3MFComposeVectorNode_GetOutputVectorPtr) GetProcAddress(hLibrary, "lib3mf_composevectornode_getoutputvector");
pWrapperTable->m_ComposeVectorNode_GetOutputResult = (PLib3MFComposeVectorNode_GetOutputResultPtr) GetProcAddress(hLibrary, "lib3mf_composevectornode_getoutputresult");
#else // _WIN32
pWrapperTable->m_ComposeVectorNode_GetOutputVector = (PLib3MFComposeVectorNode_GetOutputVectorPtr) dlsym(hLibrary, "lib3mf_composevectornode_getoutputvector");
pWrapperTable->m_ComposeVectorNode_GetOutputResult = (PLib3MFComposeVectorNode_GetOutputResultPtr) dlsym(hLibrary, "lib3mf_composevectornode_getoutputresult");
dlerror();
#endif // _WIN32
if (pWrapperTable->m_ComposeVectorNode_GetOutputVector == NULL)
if (pWrapperTable->m_ComposeVectorNode_GetOutputResult == NULL)
return LIB3MF_ERROR_COULDNOTFINDLIBRARYEXPORT;

#ifdef _WIN32
Expand Down Expand Up @@ -3499,12 +3499,12 @@ Lib3MFResult LoadLib3MFWrapperTable(sLib3MFDynamicWrapperTable * pWrapperTable,
return LIB3MF_ERROR_COULDNOTFINDLIBRARYEXPORT;

#ifdef _WIN32
pWrapperTable->m_ComposeMatrixNode_GetOutputMatrix = (PLib3MFComposeMatrixNode_GetOutputMatrixPtr) GetProcAddress(hLibrary, "lib3mf_composematrixnode_getoutputmatrix");
pWrapperTable->m_ComposeMatrixNode_GetOutputResult = (PLib3MFComposeMatrixNode_GetOutputResultPtr) GetProcAddress(hLibrary, "lib3mf_composematrixnode_getoutputresult");
#else // _WIN32
pWrapperTable->m_ComposeMatrixNode_GetOutputMatrix = (PLib3MFComposeMatrixNode_GetOutputMatrixPtr) dlsym(hLibrary, "lib3mf_composematrixnode_getoutputmatrix");
pWrapperTable->m_ComposeMatrixNode_GetOutputResult = (PLib3MFComposeMatrixNode_GetOutputResultPtr) dlsym(hLibrary, "lib3mf_composematrixnode_getoutputresult");
dlerror();
#endif // _WIN32
if (pWrapperTable->m_ComposeMatrixNode_GetOutputMatrix == NULL)
if (pWrapperTable->m_ComposeMatrixNode_GetOutputResult == NULL)
return LIB3MF_ERROR_COULDNOTFINDLIBRARYEXPORT;

#ifdef _WIN32
Expand Down Expand Up @@ -3544,12 +3544,12 @@ Lib3MFResult LoadLib3MFWrapperTable(sLib3MFDynamicWrapperTable * pWrapperTable,
return LIB3MF_ERROR_COULDNOTFINDLIBRARYEXPORT;

#ifdef _WIN32
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetOutputMatrix = (PLib3MFComposeMatrixFromRowVectorsNode_GetOutputMatrixPtr) GetProcAddress(hLibrary, "lib3mf_composematrixfromrowvectorsnode_getoutputmatrix");
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetOutputResult = (PLib3MFComposeMatrixFromRowVectorsNode_GetOutputResultPtr) GetProcAddress(hLibrary, "lib3mf_composematrixfromrowvectorsnode_getoutputresult");
#else // _WIN32
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetOutputMatrix = (PLib3MFComposeMatrixFromRowVectorsNode_GetOutputMatrixPtr) dlsym(hLibrary, "lib3mf_composematrixfromrowvectorsnode_getoutputmatrix");
pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetOutputResult = (PLib3MFComposeMatrixFromRowVectorsNode_GetOutputResultPtr) dlsym(hLibrary, "lib3mf_composematrixfromrowvectorsnode_getoutputresult");
dlerror();
#endif // _WIN32
if (pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetOutputMatrix == NULL)
if (pWrapperTable->m_ComposeMatrixFromRowVectorsNode_GetOutputResult == NULL)
return LIB3MF_ERROR_COULDNOTFINDLIBRARYEXPORT;

#ifdef _WIN32
Expand Down
18 changes: 9 additions & 9 deletions Autogenerated/Bindings/CDynamic/lib3mf_dynamic.h
Original file line number Diff line number Diff line change
Expand Up @@ -3221,10 +3221,10 @@ typedef Lib3MFResult (*PLib3MFComposeVectorNode_GetInputZPtr) (Lib3MF_ComposeVec
* Retrieves the output
*
* @param[in] pComposeVectorNode - ComposeVectorNode instance.
* @param[out] pVector - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
typedef Lib3MFResult (*PLib3MFComposeVectorNode_GetOutputVectorPtr) (Lib3MF_ComposeVectorNode pComposeVectorNode, Lib3MF_ImplicitPort * pVector);
typedef Lib3MFResult (*PLib3MFComposeVectorNode_GetOutputResultPtr) (Lib3MF_ComposeVectorNode pComposeVectorNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for DecomposeVectorNode
Expand Down Expand Up @@ -3418,10 +3418,10 @@ typedef Lib3MFResult (*PLib3MFComposeMatrixNode_GetInputM33Ptr) (Lib3MF_ComposeM
* Retrieves the output
*
* @param[in] pComposeMatrixNode - ComposeMatrixNode instance.
* @param[out] pMatrix - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
typedef Lib3MFResult (*PLib3MFComposeMatrixNode_GetOutputMatrixPtr) (Lib3MF_ComposeMatrixNode pComposeMatrixNode, Lib3MF_ImplicitPort * pMatrix);
typedef Lib3MFResult (*PLib3MFComposeMatrixNode_GetOutputResultPtr) (Lib3MF_ComposeMatrixNode pComposeMatrixNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for ComposeMatrixFromRowVectorsNode
Expand Down Expand Up @@ -3467,10 +3467,10 @@ typedef Lib3MFResult (*PLib3MFComposeMatrixFromRowVectorsNode_GetInputRow3Ptr) (
* Retrieves the output
*
* @param[in] pComposeMatrixFromRowVectorsNode - ComposeMatrixFromRowVectorsNode instance.
* @param[out] pMatrix - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
typedef Lib3MFResult (*PLib3MFComposeMatrixFromRowVectorsNode_GetOutputMatrixPtr) (Lib3MF_ComposeMatrixFromRowVectorsNode pComposeMatrixFromRowVectorsNode, Lib3MF_ImplicitPort * pMatrix);
typedef Lib3MFResult (*PLib3MFComposeMatrixFromRowVectorsNode_GetOutputResultPtr) (Lib3MF_ComposeMatrixFromRowVectorsNode pComposeMatrixFromRowVectorsNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for ConstantNode
Expand Down Expand Up @@ -6417,7 +6417,7 @@ typedef struct {
PLib3MFComposeVectorNode_GetInputXPtr m_ComposeVectorNode_GetInputX;
PLib3MFComposeVectorNode_GetInputYPtr m_ComposeVectorNode_GetInputY;
PLib3MFComposeVectorNode_GetInputZPtr m_ComposeVectorNode_GetInputZ;
PLib3MFComposeVectorNode_GetOutputVectorPtr m_ComposeVectorNode_GetOutputVector;
PLib3MFComposeVectorNode_GetOutputResultPtr m_ComposeVectorNode_GetOutputResult;
PLib3MFDecomposeVectorNode_GetInputVectorPtr m_DecomposeVectorNode_GetInputVector;
PLib3MFDecomposeVectorNode_GetOutputXPtr m_DecomposeVectorNode_GetOutputX;
PLib3MFDecomposeVectorNode_GetOutputYPtr m_DecomposeVectorNode_GetOutputY;
Expand All @@ -6438,12 +6438,12 @@ typedef struct {
PLib3MFComposeMatrixNode_GetInputM31Ptr m_ComposeMatrixNode_GetInputM31;
PLib3MFComposeMatrixNode_GetInputM32Ptr m_ComposeMatrixNode_GetInputM32;
PLib3MFComposeMatrixNode_GetInputM33Ptr m_ComposeMatrixNode_GetInputM33;
PLib3MFComposeMatrixNode_GetOutputMatrixPtr m_ComposeMatrixNode_GetOutputMatrix;
PLib3MFComposeMatrixNode_GetOutputResultPtr m_ComposeMatrixNode_GetOutputResult;
PLib3MFComposeMatrixFromRowVectorsNode_GetInputRow0Ptr m_ComposeMatrixFromRowVectorsNode_GetInputRow0;
PLib3MFComposeMatrixFromRowVectorsNode_GetInputRow1Ptr m_ComposeMatrixFromRowVectorsNode_GetInputRow1;
PLib3MFComposeMatrixFromRowVectorsNode_GetInputRow2Ptr m_ComposeMatrixFromRowVectorsNode_GetInputRow2;
PLib3MFComposeMatrixFromRowVectorsNode_GetInputRow3Ptr m_ComposeMatrixFromRowVectorsNode_GetInputRow3;
PLib3MFComposeMatrixFromRowVectorsNode_GetOutputMatrixPtr m_ComposeMatrixFromRowVectorsNode_GetOutputMatrix;
PLib3MFComposeMatrixFromRowVectorsNode_GetOutputResultPtr m_ComposeMatrixFromRowVectorsNode_GetOutputResult;
PLib3MFConstantNode_SetConstantPtr m_ConstantNode_SetConstant;
PLib3MFConstantNode_GetConstantPtr m_ConstantNode_GetConstant;
PLib3MFConstantNode_GetOutputValuePtr m_ConstantNode_GetOutputValue;
Expand Down
36 changes: 18 additions & 18 deletions Autogenerated/Bindings/CSharp/Lib3MF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1311,8 +1311,8 @@ public class Lib3MFWrapper
[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composevectornode_getinputz", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeVectorNode_GetInputZ (IntPtr Handle, out IntPtr AZ);

[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composevectornode_getoutputvector", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeVectorNode_GetOutputVector (IntPtr Handle, out IntPtr AVector);
[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composevectornode_getoutputresult", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeVectorNode_GetOutputResult (IntPtr Handle, out IntPtr AResult);

[DllImport("lib3mf.dll", EntryPoint = "lib3mf_decomposevectornode_getinputvector", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 DecomposeVectorNode_GetInputVector (IntPtr Handle, out IntPtr AVector);
Expand Down Expand Up @@ -1374,8 +1374,8 @@ public class Lib3MFWrapper
[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composematrixnode_getinputm33", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeMatrixNode_GetInputM33 (IntPtr Handle, out IntPtr AM33);

[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composematrixnode_getoutputmatrix", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeMatrixNode_GetOutputMatrix (IntPtr Handle, out IntPtr AMatrix);
[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composematrixnode_getoutputresult", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeMatrixNode_GetOutputResult (IntPtr Handle, out IntPtr AResult);

[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composematrixfromrowvectorsnode_getinputrow0", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeMatrixFromRowVectorsNode_GetInputRow0 (IntPtr Handle, out IntPtr ARow0);
Expand All @@ -1389,8 +1389,8 @@ public class Lib3MFWrapper
[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composematrixfromrowvectorsnode_getinputrow3", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeMatrixFromRowVectorsNode_GetInputRow3 (IntPtr Handle, out IntPtr ARow3);

[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composematrixfromrowvectorsnode_getoutputmatrix", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeMatrixFromRowVectorsNode_GetOutputMatrix (IntPtr Handle, out IntPtr AMatrix);
[DllImport("lib3mf.dll", EntryPoint = "lib3mf_composematrixfromrowvectorsnode_getoutputresult", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ComposeMatrixFromRowVectorsNode_GetOutputResult (IntPtr Handle, out IntPtr AResult);

[DllImport("lib3mf.dll", EntryPoint = "lib3mf_constantnode_setconstant", CallingConvention=CallingConvention.Cdecl)]
public unsafe extern static Int32 ConstantNode_SetConstant (IntPtr Handle, Double AValue);
Expand Down Expand Up @@ -5909,12 +5909,12 @@ public CImplicitPort GetInputZ ()
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newZ);
}

public CImplicitPort GetOutputVector ()
public CImplicitPort GetOutputResult ()
{
IntPtr newVector = IntPtr.Zero;
IntPtr newResult = IntPtr.Zero;

CheckError(Internal.Lib3MFWrapper.ComposeVectorNode_GetOutputVector (Handle, out newVector));
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newVector);
CheckError(Internal.Lib3MFWrapper.ComposeVectorNode_GetOutputResult (Handle, out newResult));
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newResult);
}

}
Expand Down Expand Up @@ -6093,12 +6093,12 @@ public CImplicitPort GetInputM33 ()
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newM33);
}

public CImplicitPort GetOutputMatrix ()
public CImplicitPort GetOutputResult ()
{
IntPtr newMatrix = IntPtr.Zero;
IntPtr newResult = IntPtr.Zero;

CheckError(Internal.Lib3MFWrapper.ComposeMatrixNode_GetOutputMatrix (Handle, out newMatrix));
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newMatrix);
CheckError(Internal.Lib3MFWrapper.ComposeMatrixNode_GetOutputResult (Handle, out newResult));
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newResult);
}

}
Expand Down Expand Up @@ -6141,12 +6141,12 @@ public CImplicitPort GetInputRow3 ()
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newRow3);
}

public CImplicitPort GetOutputMatrix ()
public CImplicitPort GetOutputResult ()
{
IntPtr newMatrix = IntPtr.Zero;
IntPtr newResult = IntPtr.Zero;

CheckError(Internal.Lib3MFWrapper.ComposeMatrixFromRowVectorsNode_GetOutputMatrix (Handle, out newMatrix));
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newMatrix);
CheckError(Internal.Lib3MFWrapper.ComposeMatrixFromRowVectorsNode_GetOutputResult (Handle, out newResult));
return Internal.Lib3MFWrapper.PolymorphicFactory<CImplicitPort>(newResult);
}

}
Expand Down
12 changes: 6 additions & 6 deletions Autogenerated/Bindings/Cpp/lib3mf_abi.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3234,10 +3234,10 @@ LIB3MF_DECLSPEC Lib3MFResult lib3mf_composevectornode_getinputz(Lib3MF_ComposeVe
* Retrieves the output
*
* @param[in] pComposeVectorNode - ComposeVectorNode instance.
* @param[out] pVector - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composevectornode_getoutputvector(Lib3MF_ComposeVectorNode pComposeVectorNode, Lib3MF_ImplicitPort * pVector);
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composevectornode_getoutputresult(Lib3MF_ComposeVectorNode pComposeVectorNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for DecomposeVectorNode
Expand Down Expand Up @@ -3431,10 +3431,10 @@ LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixnode_getinputm33(Lib3MF_Compose
* Retrieves the output
*
* @param[in] pComposeMatrixNode - ComposeMatrixNode instance.
* @param[out] pMatrix - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixnode_getoutputmatrix(Lib3MF_ComposeMatrixNode pComposeMatrixNode, Lib3MF_ImplicitPort * pMatrix);
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixnode_getoutputresult(Lib3MF_ComposeMatrixNode pComposeMatrixNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for ComposeMatrixFromRowVectorsNode
Expand Down Expand Up @@ -3480,10 +3480,10 @@ LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixfromrowvectorsnode_getinputrow3
* Retrieves the output
*
* @param[in] pComposeMatrixFromRowVectorsNode - ComposeMatrixFromRowVectorsNode instance.
* @param[out] pMatrix - the output
* @param[out] pResult - the output
* @return error code or 0 (success)
*/
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixfromrowvectorsnode_getoutputmatrix(Lib3MF_ComposeMatrixFromRowVectorsNode pComposeMatrixFromRowVectorsNode, Lib3MF_ImplicitPort * pMatrix);
LIB3MF_DECLSPEC Lib3MFResult lib3mf_composematrixfromrowvectorsnode_getoutputresult(Lib3MF_ComposeMatrixFromRowVectorsNode pComposeMatrixFromRowVectorsNode, Lib3MF_ImplicitPort * pResult);

/*************************************************************************************************************************
Class definition for ConstantNode
Expand Down
Loading

0 comments on commit 0ac033b

Please sign in to comment.