-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBLRectangle.h
More file actions
27 lines (25 loc) · 874 Bytes
/
Copy pathBLRectangle.h
File metadata and controls
27 lines (25 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef BLRECTANGLE_H
#define BLRECTANGLE_H
#include "BLFlatPlate.h"
#include "LineEdge.h"
#include "MeshRegions.h"
#include "MeshTool.h"
#include <memory>
#include <vector>
class BLRectangle : public BLFlatPlate {
public:
BLRectangle() {}
BLRectangle(std::map<std::string, double> &doubleparams,
std::map<std::string, int> &intparams);
void Initialise() override;
int MeshGen(MeshRegions &combinedReg, std::vector<void *> &BLedge) override;
std::vector<double> edge0(double s) override;
std::vector<double> edge1(double s) override;
std::vector<double> edge2(double s) override;
std::vector<double> edge3(double s) override;
int MeshGenLEdge(MeshRegions &combinedReg,
std::vector<void *> &BLedge) override;
int MeshGenTEdge(MeshRegions &combinedReg,
std::vector<void *> &BLedge) override;
};
#endif