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; |
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"> | |
<dict> | |
<key>001</key> | |
<string>Afghanistan</string> | |
<key>002</key> | |
<string>Albania</string> | |
<key>003</key> | |
<string>Algeria</string> |
// | |
// StyleManager.swift | |
// HoboApp | |
// | |
// Created by WLD_MBP_20 on 04/11/2015. | |
// Copyright (c) 2015 probert. All rights reserved. | |
// | |
import UIKit |
<!-- 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") |
input[type="search"] { -webkit-appearance: textfield; } |
// | |
// CoolUnitySceneViewController.m | |
// Unity-iPhone | |
// | |
// Created by Frederik Jacques on 06/08/14. | |
// | |
// | |
#import "CoolUnitySceneViewController.h" | |
#import "GoodByeViewController.h" |
var zoom = panorama.getPov().zoom; | |
var fov = 180/Math.pow(2,zoom); |
<?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> |
// Standard library | |
#include <stdint.h> | |
#include <stdio.h> | |
// Core Foundation | |
#include <CoreFoundation/CoreFoundation.h> | |
// Cryptography | |
#include <CommonCrypto/CommonDigest.h> |