Testing 3D plane creation in p5js
Forked from Mike Brondbjerg's Pen p5js - 3D Spikey Plane Ball.
A Pen by Lee Probert on CodePen.
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <array> | |
| <dict> | |
| <key>brand</key> | |
| <string>Other</string> | |
| <key>models</key> | |
| <array> | |
| <string>Not listed</string> |
| var zoom = panorama.getPov().zoom; | |
| var fov = 180/Math.pow(2,zoom); |
| // | |
| // CoolUnitySceneViewController.m | |
| // Unity-iPhone | |
| // | |
| // Created by Frederik Jacques on 06/08/14. | |
| // | |
| // | |
| #import "CoolUnitySceneViewController.h" | |
| #import "GoodByeViewController.h" |
| input[type="search"] { -webkit-appearance: textfield; } |
| <!-- Regular expression for UK postcodes --> | |
| <label for=postcode>Postcode<span class="red">*</span></label> | |
| <input name=postcode type=text aria-required required pattern="[0-9]{5}(\-[0-9]{4})?|[a-zA-Z]{1,2}\d{1,2}\s?\d[a-zA-Z]{1,2}" placeholder="A valid UK postcode" /> | |
| <!-- to test in the browser console use: --> | |
| /^(:?[a-zA-Z]{1,2}\d{1,2}\s?\d[a-zA-Z]{1,2})$/.test("tn12 6an") |
| // | |
| // StyleManager.swift | |
| // HoboApp | |
| // | |
| // Created by WLD_MBP_20 on 04/11/2015. | |
| // Copyright (c) 2015 probert. All rights reserved. | |
| // | |
| import UIKit |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>001</key> | |
| <string>Afghanistan</string> | |
| <key>002</key> | |
| <string>Albania</string> | |
| <key>003</key> | |
| <string>Algeria</string> |
Testing 3D plane creation in p5js
Forked from Mike Brondbjerg's Pen p5js - 3D Spikey Plane Ball.
A Pen by Lee Probert on CodePen.
| @import url('http://weloveiconfonts.com/api/?family=entypo'); | |
| /* | |
| VARIABLES | |
| */ | |
| $font-stack: 'Roboto', 'Avenir', Arial, sans-serif; | |
| $grey-color1: #333; | |
| $grey-color2: #444; | |
| $grey-color3: #555; |
| /** | |
| http://mythosil.hatenablog.com/entry/20111017/1318873155 | |
| http://blog.dealforest.net/2012/03/ios-android-per-aes-crypt-connection/ | |
| */ | |
| @interface NSData (AES) | |
| - (NSData *)AES128EncryptedDataWithKey:(NSString *)key; | |
| - (NSData *)AES128DecryptedDataWithKey:(NSString *)key; | |
| - (NSData *)AES128EncryptedDataWithKey:(NSString *)key iv:(NSString *)iv; |