mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
A few bugs were fixed for getBbox and updating selection rects and handles during animation.
34 lines
447 B
Objective-C
34 lines
447 B
Objective-C
//
|
|
// PanelView.m
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 9/22/11.
|
|
// Copyright © 2016 ArkPhone LLC. All rights reserved.
|
|
//
|
|
|
|
#import "PanelView.h"
|
|
|
|
|
|
@implementation PanelView
|
|
|
|
- (void)dealloc
|
|
{
|
|
}
|
|
|
|
- (instancetype)initWithFrame:(NSRect)frame
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
if (self) {
|
|
// Initialization code here.
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)drawRect:(NSRect)dirtyRect
|
|
{
|
|
// Drawing code here.
|
|
}
|
|
|
|
@end
|