MeshLib C++ Docs
Loading...
Searching...
No Matches
MRCurve.h
Go to the documentation of this file.
1#pragma once
2
3#include "MRMeshFwd.h"
4#include "MRVector3.h"
5
6namespace MR
7{
8
9struct CurvePoint
10{
11 Vector3f pos;
12 Vector3f dir;
13 Vector3f snorm;
14};
15
17using CurveFunc = std::function<CurvePoint(float)>;
18
20using CurvePoints = std::vector<CurvePoint>;
21
22} //namespace MR
new unsafe ref MR.Vector3f pos
new unsafe ref MR.Vector3f dir
Definition MRCameraOrientationPlugin.h:8