coriolis/Seabreeze/src/Node.cpp

23 lines
284 B
C++
Raw Normal View History

2022-06-03 09:48:17 -05:00
#include "Seabreeze/Node.h"
#include <iostream>
Node::Node ()
: R(0)
, C(0)
, label(-1)
, ap(0)
{ _contact = nullptr; }
Node::Node ( Node* p, Contact* ct )
: R(0)
, C(0)
, Np(p)
, _contact(ct)
, label(-1)
, ap(0)
{ (p->Ne).push_back(this); }
Node::~Node ()
{}