mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
21 lines
529 B
C++
21 lines
529 B
C++
// File: OpenGl_Matrix.hxx
|
|
// Created: 20 September 2011
|
|
// Author: Sergey ZERCHANINOV
|
|
// Copyright: OPEN CASCADE 2011
|
|
|
|
#ifndef OpenGl_Matrix_Header
|
|
#define OpenGl_Matrix_Header
|
|
|
|
#include <InterfaceGraphic_telem.hxx>
|
|
|
|
struct OpenGl_Matrix
|
|
{
|
|
float mat[4][4];
|
|
IMPLEMENT_MEMORY_OPERATORS
|
|
};
|
|
|
|
Standard_EXPORT void OpenGl_Multiplymat3 (OpenGl_Matrix *c, const OpenGl_Matrix *a, const OpenGl_Matrix *b);
|
|
Standard_EXPORT void OpenGl_Transposemat3 (OpenGl_Matrix *c, const OpenGl_Matrix *a);
|
|
|
|
#endif //OpenGl_Matrix_Header
|