comparison Color.m @ 0:48b6fb693025

Initial commit.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 17 Sep 2015 10:12:50 +0200
parents
children 1770689d6c31
comparison
equal deleted inserted replaced
-1:000000000000 0:48b6fb693025
1 classdef Color
2 properties(Constant)
3 blue = [0.000 0.447 0.741];
4 red = [0.850 0.325 0.098];
5 yellow = [0.929 0.694 0.125];
6 purple = [0.494 0.184 0.556];
7 green = [0.466 0.674 0.188];
8 lightblue = [0.301 0.745 0.933];
9 darkred = [0.635 0.078 0.184];
10 end
11 end