Circle.py 1/4

[
top][prev][next]
from Point import Point

class Circle:
    """Class Circle
    """
    # Attributes:
    __origin = None  # (Point) 
    __radius = None  # (double) 
    
    # Operations


Point.py 2/4

[
top][prev][next]

class Point:
    """Class Point
    """
    # Attributes:
    __x = None  # (double) 
    __y = None  # (double) 
    
    # Operations


Polygon.py 3/4

[
top][prev][next]
from Segment import Segment

class Polygon:
    """Class Polygon
    """
    # Attributes:
    
    # Operations


Segment.py 4/4

[
top][prev][next]
from Point import Point

class Segment:
    """Class Segment
    """
    # Attributes:
    
    # Operations


Generated by GNU enscript 1.6.1.