CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/osx/isight/CSGImage.m
Views: 11780
1
//
2
// CSGImage.m
3
// MotionTracker
4
//
5
// Created by Tim Omernick on 3/6/05.
6
// Copyright 2005 Tim Omernick. All rights reserved.
7
//
8
9
#import "CSGImage.h"
10
11
@implementation CSGImage
12
13
// NSObject subclass
14
15
- (NSString *)description;
16
{
17
return [NSString stringWithFormat:@"<%@: %p> (sampleTime=%.4f)", NSStringFromClass([self class]), self, sampleTime];
18
}
19
20
// API
21
22
- (NSTimeInterval)sampleTime;
23
{
24
return sampleTime;
25
}
26
27
- (void)setSampleTime:(NSTimeInterval)newSampleTime;
28
{
29
sampleTime = newSampleTime;
30
}
31
32
@end
33
34