NAPISD
PAHdb website C++ backend
Loading...
Searching...
No Matches
Line.cpp
1#include "Line.h"
2
3Line::Line()
4 : _startcoordinates({-1.0, -1.0, 0.0}), _endcoordinates({1.0, 1.0, 0.0}) {
5 type = Type::I_Line;
6}
7Line *Line::clone() const { return new Line(*this); }
8void Line::setStartCoordinates(double x, double y, double z) {
9
10 _startcoordinates = {x, y, z};
11}
12
13void Line::setEndCoordinates(double x, double y, double z) {
14
15 _endcoordinates = {x, y, z};
16}
Definition Line.h:9

Since FY2019 the NASA Ames PAH IR Spectroscopic Database is being supported through a directed Work Package at NASA Ames titled: "Laboratory Astrophysics - The NASA Ames PAH IR Spectroscopic Database".
Since FY2023 the NASA Ames PAH IR Spectroscopic Database is being supported through the Laboratory Astrophysics Rd 2 directed Work Package at NASA Ames.
© Copyright 2021-2025, Christiaan Boersma