You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
/***************************************************************************
|
|
csegment.cpp - K Desktop Planetarium
|
|
-------------------
|
|
begin : Sun Feb 1 2004
|
|
copyright : (C) 2004 by Jason Harris
|
|
email : kstars@30doradus.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "csegment.h"
|
|
#include "skypoint.h"
|
|
|
|
CSegment::CSegment() : Name1(), Name2() {
|
|
Nodes.setAutoDelete( true );
|
|
}
|
|
|
|
void CSegment::addPoint( double ra, double dec ) {
|
|
SkyPoint *p = new SkyPoint( ra, dec );
|
|
Nodes.append( p );
|
|
}
|
|
|
|
bool CSegment::setNames( TQString n1, TQString n2 ) {
|
|
if ( n1.length() == 3 && n2.length() == 3 ) {
|
|
Name1 = n1;
|
|
Name2 = n2;
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool CSegment::borders( TQString cname ) {
|
|
if ( Name1 == cname || Name2 == cname ) return true;
|
|
return false;
|
|
}
|