16 lines
412 B
C++
16 lines
412 B
C++
//
|
|
// Created on 2026/3/6.
|
|
//
|
|
// 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_WORLDAXIS_H
|
|
#define OPENCAX_WORLDAXIS_H
|
|
#include "../RenderStruct.h"
|
|
#include <Prs3d_DatumParts.hxx>
|
|
namespace NativeOpenCAX {
|
|
bool InitWorldAxis(RenderOption& opt);
|
|
void ChangeWorldAxis();
|
|
}
|
|
#endif //OPENCAX_WORLDAXIS_H
|