Logo
Segment3D.h
1#pragma once
2#include "Vector3.h"
3
4namespace SharpKmyMath
5{
6 public ref class Segment3
7 {
8 public:
11 Segment3(Vector3 p0, Vector3 p1);
12 };
13}
Definition: Segment3D.h:7
Vector3 _p1
Definition: Segment3D.h:9
Segment3()
Definition: Segment3D.h:10
Vector3 _p0
Definition: Segment3D.h:9
Definition: RefCapture.h:3
Definition: Vector3.h:7