Skip to content

Commit 0a6e9ba

Browse files
committed
- Big **{Software} Structures** update (commits and additions).
- Deletions. - HYPE import statement docs. - Initial commit of working **formula** sketch. - Initial commit of (completed) **OrbitingSquares** sketch. - Initial commit of (completed) **spinning_top** sketch. - Initial commit of **less_angry_rainbow** palette generator.
1 parent dbf4649 commit 0a6e9ba

35 files changed

+4337
-321
lines changed

Demos/Graphics/BoxClock/BoxClock.pyde

-96
This file was deleted.

Demos/Graphics/RotatingArcs/RotatingArcs.pyde

-149
This file was deleted.

HYPE examples/hype imports.java

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import hype.core.util.*;
2+
import hype.core.behavior.*;
3+
import hype.core.collection.*;
4+
import hype.core.colorist.*;
5+
import hype.core.drawable.*;
6+
import hype.core.interfaces.*;
7+
import hype.core.layout.*;
8+
import hype.extended.behavior.*;
9+
import hype.extended.colorist.*;
10+
import hype.extended.drawable.*;
11+
import hype.extended.layout.*;
12+
import hype.extended.util.*;

HYPE examples/hype imports.py

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
from hype.core.util import H
2+
from hype.core.util import HBundle
3+
from hype.core.util import HCapture
4+
from hype.core.util import HColors
5+
from hype.core.util import HConstants
6+
from hype.core.behavior import HBehavior
7+
from hype.core.behavior import HBehaviorRegistry
8+
from hype.core.behavior import HTrigger
9+
from hype.core.collection import HLinkedHashSet
10+
from hype.core.collection import HLinkedList
11+
from hype.core.collection import HNode
12+
from hype.core.colorist import HColorist
13+
from hype.core.drawable import HDrawable
14+
from hype.core.drawable import HDrawable3D
15+
from hype.core.drawable import HStage
16+
from hype.core.interfaces import HCallback
17+
from hype.core.interfaces import HDirectable
18+
from hype.core.interfaces import HHittable
19+
from hype.core.interfaces import HImageHolder
20+
from hype.core.interfaces import HLocatable
21+
from hype.core.interfaces import HRotatable
22+
from hype.core.layout import HLayout
23+
from hype.core.util import HMath
24+
from hype.core.util import HMouse
25+
from hype.core.util import HVector
26+
from hype.core.util import HWarnings
27+
from hype.extended.behavior import HFollow
28+
from hype.extended.behavior import HMagneticField
29+
from hype.extended.behavior import HOscillator
30+
from hype.extended.behavior import HRandomTrigger
31+
from hype.extended.behavior import HRotate
32+
from hype.extended.behavior import HSwarm
33+
from hype.extended.behavior import HTimer
34+
from hype.extended.behavior import HTween
35+
from hype.extended.behavior import HVelocity
36+
from hype.extended.colorist import HColorField
37+
from hype.extended.colorist import HColorPool
38+
from hype.extended.colorist import HColorTransform
39+
from hype.extended.colorist import HPixelColorist
40+
from hype.extended.drawable import HBox
41+
from hype.extended.drawable import HCanvas
42+
from hype.extended.drawable import HEllipse
43+
from hype.extended.drawable import HGroup
44+
from hype.extended.drawable import HImage
45+
from hype.extended.drawable import HPath
46+
from hype.extended.drawable import HRect
47+
from hype.extended.drawable import HShape
48+
from hype.extended.drawable import HSphere
49+
from hype.extended.drawable import HText
50+
from hype.extended.layout import HGridLayout
51+
from hype.extended.layout import HShapeLayout
52+
from hype.extended.util import HDrawablePool
53+
from hype.extended.util import HVertex

0 commit comments

Comments
 (0)