23 lines
552 B
C++
23 lines
552 B
C++
//
|
|
// Created on 2026/3/30.
|
|
//
|
|
// Node APIs are not fully supported. To solve the compilation error of the interface cannot be found,
|
|
// please include "napi/native_api.h".
|
|
|
|
#ifndef OPENCAX_V3DTRIEDRON_H
|
|
#define OPENCAX_V3DTRIEDRON_H
|
|
#include "NativeEGLOCCT/common.h"
|
|
#include <AIS_Trihedron.hxx>
|
|
#include <AIS_InteractiveContext.hxx>
|
|
#include <Geom_Axis2Placement.hxx>
|
|
namespace NativeNXEA {
|
|
|
|
class V3dWCSTri {
|
|
public:
|
|
V3dWCSTri();
|
|
~V3dWCSTri();
|
|
bool InitV3dWCSTri(Handle(AIS_InteractiveContext)& ctx);
|
|
};
|
|
}
|
|
#endif //OPENCAX_V3DTRIEDRON_H
|