CoastalME (Coastal Modelling Environment)
Simulates the long-term behaviour of complex coastlines
Loading...
Searching...
No Matches
i_line.h
Go to the documentation of this file.
1
12
13#ifndef ILINE_H
14#define ILINE_H
15/* ===============================================================================================================================
16 This file is part of CoastalME, the Coastal Modelling Environment.
17
18 CoastalME is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23===============================================================================================================================*/
24#include "2di_shape.h"
25
26class CGeomILine : public CA2DIShape
27{
28 private:
29 protected:
30 void Display(void) override;
31
32 public:
33 CGeomILine(void);
34 ~CGeomILine(void) override;
35
36 // CGeom2DIPoint* pPtiGetAt(int const);
37 // int nGetXAt(int const);
38 // int nGetYAt(int const);
39 // void SetXAt(int const, int const);
40 // void SetYAt(int const, int const);
41
42 bool bIsPresent(int const, int const);
43};
44#endif // ILINE_H
Contains CA2DIShape definitions.
CA2DIShape(void)
Constructor, no parameters.
Definition 2di_shape.cpp:24
bool bIsPresent(int const, int const)
Returns true if the point is present in the line.
Definition i_line.cpp:64
~CGeomILine(void) override
Destructor.
Definition i_line.cpp:31
void Display(void) override
Instantiates the pure virtual function in the abstract parent class, so that CGeomILine is not an abs...
Definition i_line.cpp:81
CGeomILine(void)
Constructor.
Definition i_line.cpp:26