MeshLib C++ Docs
Loading...
Searching...
No Matches
MRFaceFace.h
Go to the documentation of this file.
1#pragma once
2
3#include "MRId.h"
4#include <compare>
5
6namespace MR
7{
8
11
13struct FaceFace
14{
15 FaceId aFace;
16 FaceId bFace;
17 FaceFace( FaceId a, FaceId b ) : aFace( a ), bFace( b ) {}
18 FaceFace() {};
19 auto operator<=>( const FaceFace& rhs ) const = default;
20};
21
23struct UndirectedEdgeUndirectedEdge
24{
25 UndirectedEdgeId aUndirEdge;
26 UndirectedEdgeId bUndirEdge;
27 UndirectedEdgeUndirectedEdge( UndirectedEdgeId a, UndirectedEdgeId b ) : aUndirEdge( a ), bUndirEdge( b ) {}
29 auto operator<=>( const UndirectedEdgeUndirectedEdge& rhs ) const = default;
30};
31
33
34} // namespace MR
unsafe FaceFace()
Definition MRCameraOrientationPlugin.h:8