mesh_converter::Point

#include <MeshElement.hpp>

Public Functions

Name
Point() =default
Point(double px, double py, double pz)
Point(double py, double pz)
bool isFinite() const

Public Attributes

Name
double x
double y
double z
unsigned int dim

Friends

Name
std::ostream & operator«(std::ostream & out, const Point & pt)

Public Functions Documentation

function Point

Point() =default

function Point

inline Point(
    double px,
    double py,
    double pz
)

function Point

inline Point(
    double py,
    double pz
)

function isFinite

inline bool isFinite() const

Public Attributes Documentation

variable x

double x {0};

variable y

double y {0};

variable z

double z {0};

variable dim

unsigned int dim {0};

Friends

friend operator«

friend std::ostream & operator<<(
    std::ostream & out,

    const Point & pt
);

Updated on 2024-12-13 at 08:31:36 +0000