[go: up one dir, main page]

File: Topology.h

package info (click to toggle)
libformfactor 0.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,288 kB
  • sloc: cpp: 17,289; python: 382; makefile: 15
file content (43 lines) | stat: -rw-r--r-- 1,284 bytes parent folder | download
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
//  ************************************************************************************************
//
//  libformfactor: efficient and accurate computation of scattering form factors
//
//! @file      ff/Topology.h
//! @brief     Defines classes PolygonalTopology, Topology
//!
//! @homepage  https://jugit.fz-juelich.de/mlz/libformfactor
//! @license   GNU General Public License v3 or higher (see LICENSE)
//! @copyright Forschungszentrum Jülich GmbH 2022
//! @author    Joachim Wuttke, Scientific Computing Group at MLZ (see CITATION)
//
//  ************************************************************************************************

#ifndef FF_TOPOLOGY_H
#define FF_TOPOLOGY_H

#include <ostream>
#include <vector>

namespace ff {

//! For internal use in PolyhedralFace.
class FacialTopology {
public:
    std::vector<int> vertexIndices;
    bool symmetry_S2;
    bool operator==(const FacialTopology& rhs) const;
    std::vector<std::pair<int, int>> edges_undirected() const;
    std::vector<std::pair<int, int>> edges_directed() const;
};

//! For internal use in IFormFactorPolyhedron.
class Topology {
public:
    std::vector<FacialTopology> faces;
    bool symmetry_Ci;
    bool operator==(const Topology& rhs) const;
};

} // namespace ff

#endif // FF_TOPOLOGY_H