PixCells
This project is a Cellular Potts Model (CPM) simulator. It was developped during a Master's degree in Physics as a master project.
Loading...
Searching...
No Matches
Cell Class Reference

Public Member Functions

 Cell (int id, int type, int target_surface, float target_length, sf::Color color)
 Construct a new Cell:: Cell object.
 
 ~Cell ()
 Destroy the Cell:: Cell object.
 
int get_id ()
 Get the id of the cell.
 
int get_type ()
 Get the type of the cell.
 
float get_length ()
 Get the length of the cell.
 
int get_target_surface ()
 Get the target surface of the cell.
 
float get_target_length ()
 Get the target length of the cell.
 
sf::Color get_color ()
 Get the color of the cell.
 
std::vector< std::pair< int, int > > get_position ()
 Get the position of the cell.
 
void set_id (int id)
 Set the id of the cell.
 
void set_type (int type)
 Set the type of the cell.
 
void set_target_surface (int target_surface)
 Set the target surface of the cell.
 
void set_target_length (float target_length)
 Set the target length of the cell.
 
void set_color (sf::Color color)
 Set the color of the cell.
 
void add_position (int x, int y)
 Add a position to the cell.
 
void remove_position (int x, int y)
 Remove a position from the cell.
 
void clear_position ()
 Clear the position of the cell.
 
void print ()
 Print the cell in the console.
 
void update_length ()
 Update the length of the cell.
 

Constructor & Destructor Documentation

◆ Cell()

Cell::Cell ( int  id,
int  type,
int  target_surface,
float  target_length,
sf::Color  color 
)

Construct a new Cell:: Cell object.

Parameters
idid of the cell
typetype of the cell
target_surfacetarget surface of the cell
target_lengthtarget length of the cell
colorcolor of the cell

Member Function Documentation

◆ add_position()

void Cell::add_position ( int  x,
int  y 
)

Add a position to the cell.

Parameters
xthe x position
ythe y position
Returns
void

◆ clear_position()

void Cell::clear_position ( )

Clear the position of the cell.

Returns
void

◆ get_color()

sf::Color Cell::get_color ( )

Get the color of the cell.

Returns
sf::Color

◆ get_id()

int Cell::get_id ( )

Get the id of the cell.

Returns
int

◆ get_length()

float Cell::get_length ( )

Get the length of the cell.

Returns
float

◆ get_position()

std::vector< std::pair< int, int > > Cell::get_position ( )

Get the position of the cell.

Returns
std::vector<std::pair<int, int>>

◆ get_target_length()

float Cell::get_target_length ( )

Get the target length of the cell.

Returns
float

◆ get_target_surface()

int Cell::get_target_surface ( )

Get the target surface of the cell.

Returns
int

◆ get_type()

int Cell::get_type ( )

Get the type of the cell.

Returns
int

◆ print()

void Cell::print ( )

Print the cell in the console.

Returns
void

◆ remove_position()

void Cell::remove_position ( int  x,
int  y 
)

Remove a position from the cell.

Parameters
xthe x position
ythe y position
Returns
void

◆ set_color()

void Cell::set_color ( sf::Color  color)

Set the color of the cell.

Parameters
colorthe color of the cell
Returns
void

◆ set_id()

void Cell::set_id ( int  id)

Set the id of the cell.

Parameters
idthe id of the cell
Returns
void

◆ set_target_length()

void Cell::set_target_length ( float  target_length)

Set the target length of the cell.

Parameters
target_lengththe target length of the cell
Returns
void

◆ set_target_surface()

void Cell::set_target_surface ( int  target_surface)

Set the target surface of the cell.

Parameters
target_surfacethe target surface of the cell
Returns
void

◆ set_type()

void Cell::set_type ( int  type)

Set the type of the cell.

Parameters
typethe type of the cell
Returns
void

◆ update_length()

void Cell::update_length ( )

Update the length of the cell.

Returns
void

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