-
Notifications
You must be signed in to change notification settings - Fork 0
/
curve.h
45 lines (41 loc) · 1.12 KB
/
curve.h
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef _CURVE_H_
#define _CURVE_H_
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <GL/gl.h>
#include "arrow.h"
#include "vector3d.h"
#include "vecfield.h"
/**
* \file curve.h
* \Author Pongó Tivadar
* \date 2015 Május
* \brief A Curve osztály deklarációja.
*/
/**
* \brief Curve osztály
*
* Egy vector<Arrow>-ban tárolja a vezeték kis egyenes darabjait. Minden darabhoz lehet
* rendelni egy áramerősséget a current vectorban.
* A with_current kapcsoló arra lenne jó, ha a vezetőben különböző erősségű
* áramok folynának, akkor minden kis darabban folyhatna akár más-más áram.
* De ez a funkció nem lett implementálva.
*/
class Curve {
friend class VecField;
private:
std::vector<Arrow> curve;
std::vector<double> current;
bool with_current;
public:
Curve();
Curve(const std::vector<Arrow>& cur);
Curve(const char * path);
void Load(const char * path);
void Draw();
friend std::istream& operator>>(std::istream& in, Curve& c);
friend std::ostream& operator<<(std::ostream& out, Curve& c);
};
#endif // _CURVE_H_