JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
PCoordinate< T > Class Template Reference

#include <Vector.h>

Collaboration diagram for PCoordinate< T >:

Public Member Functions

 PCoordinate (void)
 
 PCoordinate (int n)
 
virtual ~PCoordinate (void)
 
void init (int n)
 
void set (int m, T x, T y=0, T z=0, double n=0.0)
 
void clear (void)
 
void free (void)
 

Public Attributes

int dim
 
Vector< T > ** point
 

Detailed Description

template<typename T = int>
class jbxl::PCoordinate< T >

template <typename T=int>> class DllExport PCoordinate

多角形の座標の値を格納するクラス

Definition at line 366 of file Vector.h.

Constructor & Destructor Documentation

◆ PCoordinate() [1/2]

template<typename T = int>
PCoordinate ( void )
inline

Definition at line 373 of file Vector.h.

373{ dim = 0; point = NULL;}
Vector< T > ** point
Definition Vector.h:370

◆ PCoordinate() [2/2]

template<typename T = int>
PCoordinate ( int n)
inline

Definition at line 374 of file Vector.h.

374{ init(n);}
void init(int n)
Definition Vector.h:378

◆ ~PCoordinate()

template<typename T = int>
virtual ~PCoordinate ( void )
inlinevirtual

Definition at line 376 of file Vector.h.

376{}

Member Function Documentation

◆ clear()

template<typename T = int>
void clear ( void )
inline

Definition at line 395 of file Vector.h.

395 {
396 if (point!=NULL) {
397 for (int i=0; i<dim; i++) point[i]->set((T)0);
398 }
399 }
void set(int m, T x, T y=0, T z=0, double n=0.0)
Definition Vector.h:391

◆ free()

template<typename T = int>
void free ( void )
inline

Definition at line 401 of file Vector.h.

401 {
402 if (point!=NULL) {
403 for (int i=0; i<dim; i++) delete(point[i]);
404 ::free(point);
405 point = NULL;
406 }
407 dim = 0;
408 }
void free(void)
Definition Vector.h:401

◆ init()

template<typename T = int>
void init ( int n)
inline

Definition at line 378 of file Vector.h.

378 {
379 dim = 0;
380 point = NULL;
381
382 if (n>0) {
383 point = (Vector<T>**)malloc(sizeof(Vector<T>*)*n);
384 if (point!=NULL) {
385 dim = n;
386 for (int i=0; i<dim; i++) point[i] = new Vector<T>();
387 }
388 }
389 }

◆ set()

template<typename T = int>
void set ( int m,
T x,
T y = 0,
T z = 0,
double n = 0.0 )
inline

Definition at line 391 of file Vector.h.

391 {
392 if (m>=0 && m<dim && point!=NULL) point[m]->set(x, y, z, n);
393 }

References Vector< T >::set().

Here is the call graph for this function:

Member Data Documentation

◆ dim

template<typename T = int>
int dim

Definition at line 369 of file Vector.h.

◆ point

template<typename T = int>
Vector<T>** point

Definition at line 370 of file Vector.h.


The documentation for this class was generated from the following file: