Skip to content

Instantly share code, notes, and snippets.

@C4Tutorials
C4Tutorials / C4WorkSpace.m
Created May 13, 2013 06:35
Basic Notifications VIVO workshop session 3
//
// C4WorkSpace.m
// Basic Notifications
//
// Created by moi on 13-05-12.
// Copyright (c) 2013 moi. All rights reserved.
//
#import "C4WorkSpace.h"
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Last active December 17, 2015 03:39
boilerplate
@implementation C4WorkSpace
-(void)setup {
C4Image *table = [C4Image imageNamed:@"C4Table"];
table.center = self.canvas.center;
C4Image *sky = [C4Image imageNamed:@"C4Sky"];
[self.canvas addObjects:@[table,sky]];
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Created May 9, 2013 01:32
Distortion Cube for VIVO
//
// C4WorkSpace.m
// MediaMashup
//
// Created by moi on 13-05-08.
// Copyright (c) 2013 moi. All rights reserved.
//
#import "C4WorkSpace.h"
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Last active December 16, 2015 10:59
Getting Media Tutorial
//
// C4WorkSpace.m
// Getting Media Tutorial
//
// Created by Travis Kirton.
//
#import "C4WorkSpace.h"
@implementation C4WorkSpace {
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Created April 19, 2013 21:26
Advanced Pan Tutorial
//
// C4WorkSpace.m
// Pan Tutorial
//
// Created by Travis Kirton.
//
#import "C4WorkSpace.h"
@implementation C4WorkSpace {
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Last active December 16, 2015 10:49
Pan Tutorial
//
// C4WorkSpace.m
// Pan Tutorial
//
// Created by Travis Kirton.
//
#import "C4WorkSpace.h"
@implementation C4WorkSpace {
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Last active December 16, 2015 10:49
Advanced Swipes Tutorial
//
// C4WorkSpace.m
// Advanced Swipes Tutorial
//
// Created by Travis Kirton.
//
#import "C4WorkSpace.h"
@implementation C4WorkSpace {
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Last active December 16, 2015 10:39
Swipes Tutorial
//
// C4WorkSpace.m
// Swipes Tutorial
//
// Created by Travis Kirton.
//
#import "C4WorkSpace.h"
@implementation C4WorkSpace {
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Last active December 16, 2015 10:39
Taps & Touches Tutorial
//
// C4WorkSpace.m
// Taps & Touches Tutorial
//
// Created by Travis Kirton.
//
#import "C4WorkSpace.h"
@implementation C4WorkSpace {
@C4Tutorials
C4Tutorials / C4WorkSpace.m
Last active December 16, 2015 09:59
Exporting Tutorial
//
// C4WorkSpace.m
// Exporting Tutorial
//
// Created by Travis Kirton.
//
#import "C4WorkSpace.h"
@implementation C4WorkSpace {