//
//  VerticalBubble.m
//  WindowmakerMeasureCPA
//
//  Created by Admin on 27/01/1939 Saka.
//
//

#import "VerticalBubble.h"

@implementation VerticalBubble

- (void)drawRect:(CGRect)rect
{
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextAddEllipseInRect(ctx, rect);
    CGContextSetFillColor(ctx, CGColorGetComponents([[UIColor blueColor] CGColor]));
    CGContextFillPath(ctx);
}

@end
