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