This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Initial eclipsing binary star intro | |
# http://www.physics.sfasu.edu/astro/ebstar/ebstar.html | |
# | |
class LightCurve(object): | |
""" | |
This class represents light curve of an astronomical object. Light curve means | |
curve between time and magnitude (visual magnitude in this case). | |
""" | |
def __init__(self, start_date, time_unit): | |
self._points = [] |
NewerOlder