Logo
ViewVolume.h
1#pragma once
2#include "Math/Matrix4.h"
3#include "math/Segment3D.h"
4
5namespace XXSharpKmyGfx
6{
7 private ref class ViewVolume
8 {
9 kmyGfx::ViewVolume* _native = nullptr;
10 public:
11 ViewVolume(XXSharpKmyMath::Matrix4 proj, XXSharpKmyMath::Matrix4 view);
12 bool clipSegment3(XXSharpKmyMath::Segment3 ^segment, [Runtime::InteropServices::Out] XXSharpKmyMath::Segment3^ %result);
13 };
14}