MeshLib C Docs
Loading...
Searching...
No Matches
MRPointOnFace.h
Go to the documentation of this file.
1#pragma once
2
3#include <MRCMesh/MRId.h>
4#include <MRCMesh/MRVector3.h>
5#include <MRCMisc/exports.h>
6
7#include <stdbool.h>
8#include <stddef.h>
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14typedef struct MR_std_istream MR_std_istream; // Defined in `#include <MRCMisc/iostream.h>`.
15typedef struct MR_std_ostream MR_std_ostream; // Defined in `#include <MRCMisc/iostream.h>`.
16
17
22
28
33
39
45
50
56
60
65
69
72
75
80
83
86
90
96
101
107
113
114#ifdef __cplusplus
115} // extern "C"
116#endif
struct MR_std_ostream MR_std_ostream
Definition MRCtm.h:31
struct MR_std_istream MR_std_istream
Definition MRCtm.h:28
struct MR_PointOnFace MR_PointOnFace
Definition MREnumNeighbours.h:15
MRC_API void MR_PointOnFace_Set_point(MR_PointOnFace *_this, MR_Vector3f value)
MRC_API MR_PointOnFace * MR_PointOnFace_DefaultConstruct(void)
MRC_API bool MR_PointOnFace_valid(const MR_PointOnFace *_this)
MRC_API MR_PointOnFace * MR_PointOnFace_ConstructFromAnother(const MR_PointOnFace *_other)
MRC_API void MR_PointOnFace_Set_face(MR_PointOnFace *_this, MR_FaceId value)
MRC_API const MR_PointOnFace * MR_PointOnFace_OffsetPtr(const MR_PointOnFace *ptr, ptrdiff_t i)
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the...
MRC_API void MR_PointOnFace_DestroyArray(const MR_PointOnFace *_this)
Destroys a heap-allocated array of MR_PointOnFace. Does nothing if the pointer is null.
MRC_API MR_PointOnFace * MR_PointOnFace_DefaultConstructArray(size_t num_elems)
MRC_API MR_std_ostream * MR_print_MR_PointOnFace(MR_std_ostream *s, const MR_PointOnFace *pof)
MRC_API MR_Vector3f * MR_PointOnFace_GetMutable_point(MR_PointOnFace *_this)
MRC_API MR_FaceId * MR_PointOnFace_GetMutable_face(MR_PointOnFace *_this)
MRC_API const MR_FaceId * MR_PointOnFace_Get_face(const MR_PointOnFace *_this)
MRC_API MR_PointOnFace * MR_PointOnFace_ConstructFrom(MR_FaceId face, MR_Vector3f point)
MRC_API const MR_Vector3f * MR_PointOnFace_Get_point(const MR_PointOnFace *_this)
MRC_API MR_std_istream * MR_input_MR_PointOnFace(MR_std_istream *s, MR_PointOnFace *pof)
MRC_API MR_PointOnFace * MR_PointOnFace_OffsetMutablePtr(MR_PointOnFace *ptr, ptrdiff_t i)
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the...
MRC_API void MR_PointOnFace_Destroy(const MR_PointOnFace *_this)
Destroys a heap-allocated instance of MR_PointOnFace. Does nothing if the pointer is null.
MRC_API MR_PointOnFace * MR_PointOnFace_AssignFromAnother(MR_PointOnFace *_this, const MR_PointOnFace *_other)
MRC_API bool MR_PointOnFace_ConvertTo_bool(const MR_PointOnFace *_this)
#define MRC_API
Definition exports.h:11
Definition MRId.h:45
Definition MRVector3.h:52