-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinit.m
More file actions
40 lines (34 loc) · 1.41 KB
/
Copy pathinit.m
File metadata and controls
40 lines (34 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(* ::Package:: *)
(* first establish all shared symbols in proper contexts *)
(* note that external packages listed in $ExternalContexts defined in Information.m will
be loaded automatically through BeginPackage *)
Get["SciDraw`Information`"]; (* version information and external context list *)
Get["SciDraw`Usage`"]; (* public symbols *)
Get["SciDraw`Class`"]; (* class method names and option inheritance definitions *)
Get["SciDraw`Common`"]; (* private shared variables *)
(* then load core module files which define patterns *)
(* these must be defined before they can be used on the LHS of assignments in
in other module files *)
Get["SciDraw`FigArgument`"];
Get["SciDraw`FigGeometry`"];
(* then load remaining core module files in arbitrary order *)
Get["SciDraw`FigAnchor`"];
Get["SciDraw`FigElement`"];
Get["SciDraw`FigError`"];
Get["SciDraw`FigFigure`"];
Get["SciDraw`FigObject`"];
(*Get["SciDraw`FigStyle`"];*)
Get["SciDraw`FigText`"];
Get["SciDraw`FigWindow`"];
(* then load figure object module files in (almost) arbitrary order *)
Get["SciDraw`FigData`"]
Get["SciDraw`FigLabel`"];
Get["SciDraw`FigPanel`"];
Get["SciDraw`FigShape`"];
Get["SciDraw`FigArrow`"];
Get["SciDraw`FigScheme`"]; (* needs SciDraw`FigArrow` for inheritance*)
Get["SciDraw`FigGraphics`"];
(* optimization testbeds *)
Get["SciDraw`FigProfile`"];
(* finally output splash panel *)
Get["SciDraw`FigSplash`"];