Skip to content

Commit cca2bdd

Browse files
committed
Update
2 parents 6c95146 + b03836f commit cca2bdd

23 files changed

+870
-613
lines changed

Diff for: book/404.html

+218
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,218 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="sidebar-visible no-js light">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title></title>
7+
8+
9+
<base href="/">
10+
11+
12+
13+
<!-- Custom HTML head -->
14+
15+
16+
17+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
18+
<meta name="description" content="">
19+
<meta name="viewport" content="width=device-width, initial-scale=1">
20+
<meta name="theme-color" content="#ffffff" />
21+
22+
23+
<link rel="icon" href="favicon.svg">
24+
25+
26+
<link rel="shortcut icon" href="favicon.png">
27+
28+
<link rel="stylesheet" href="css/variables.css">
29+
<link rel="stylesheet" href="css/general.css">
30+
<link rel="stylesheet" href="css/chrome.css">
31+
<link rel="stylesheet" href="css/print.css" media="print">
32+
33+
<!-- Fonts -->
34+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
35+
36+
<link rel="stylesheet" href="fonts/fonts.css">
37+
38+
39+
<!-- Highlight.js Stylesheets -->
40+
<link rel="stylesheet" href="highlight.css">
41+
<link rel="stylesheet" href="tomorrow-night.css">
42+
<link rel="stylesheet" href="ayu-highlight.css">
43+
44+
<!-- Custom theme stylesheets -->
45+
46+
47+
48+
</head>
49+
<body>
50+
<!-- Provide site root to javascript -->
51+
<script type="text/javascript">
52+
var path_to_root = "";
53+
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
54+
</script>
55+
56+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
57+
<script type="text/javascript">
58+
try {
59+
var theme = localStorage.getItem('mdbook-theme');
60+
var sidebar = localStorage.getItem('mdbook-sidebar');
61+
62+
if (theme.startsWith('"') && theme.endsWith('"')) {
63+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
64+
}
65+
66+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
67+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
68+
}
69+
} catch (e) { }
70+
</script>
71+
72+
<!-- Set the theme before any content is loaded, prevents flash -->
73+
<script type="text/javascript">
74+
var theme;
75+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
76+
if (theme === null || theme === undefined) { theme = default_theme; }
77+
var html = document.querySelector('html');
78+
html.classList.remove('no-js')
79+
html.classList.remove('light')
80+
html.classList.add(theme);
81+
html.classList.add('js');
82+
</script>
83+
84+
<!-- Hide / unhide sidebar before it is displayed -->
85+
<script type="text/javascript">
86+
var html = document.querySelector('html');
87+
var sidebar = 'hidden';
88+
if (document.body.clientWidth >= 1080) {
89+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
90+
sidebar = sidebar || 'visible';
91+
}
92+
html.classList.remove('sidebar-visible');
93+
html.classList.add("sidebar-" + sidebar);
94+
</script>
95+
96+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
97+
<div class="sidebar-scrollbox">
98+
<ol class="chapter"><li class="chapter-item expanded "><a href="intro/introduction.html"><strong aria-hidden="true">1.</strong> Plotters Developer's Guide</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="intro/getting_started.html"><strong aria-hidden="true">1.1.</strong> Getting started</a></li></ol></li><li class="chapter-item expanded "><a href="basic/overview.html"><strong aria-hidden="true">2.</strong> Basic plotting</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="basic/chart_context.html"><strong aria-hidden="true">2.1.</strong> Define chart context</a></li><li class="chapter-item expanded "><a href="basic/chart_components.html"><strong aria-hidden="true">2.2.</strong> Draw figure components</a></li><li class="chapter-item expanded "><a href="basic/basic_data_plotting.html"><strong aria-hidden="true">2.3.</strong> Basic data plotting</a></li><li class="chapter-item expanded "><a href="basic/multipanel.html"><strong aria-hidden="true">2.4.</strong> Multipanel figures</a></li><li class="chapter-item expanded "><a href="basic/draw_3d_plots.html"><strong aria-hidden="true">2.5.</strong> Draw 3D plots</a></li><li class="chapter-item expanded "><a href="basic/animate.html"><strong aria-hidden="true">2.6.</strong> Animation and realtime rendering</a></li></ol></li><li class="chapter-item expanded "><a href="tweak/overview.html"><strong aria-hidden="true">3.</strong> Tweaking the figure</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="tweak/layout.html"><strong aria-hidden="true">3.1.</strong> Layout tweak</a></li><li class="chapter-item expanded "><a href="tweak/font_color_style.html"><strong aria-hidden="true">3.2.</strong> Font, color and styles</a></li><li class="chapter-item expanded "><a href="tweak/aixs_mesh_labels.html"><strong aria-hidden="true">3.3.</strong> Axis, mesh and label tweaks</a></li><li class="chapter-item expanded "><a href="tweak/relative_sizing.html"><strong aria-hidden="true">3.4.</strong> Relative sizing</a></li></ol></li><li class="chapter-item expanded "><a href="drawing/overview.html"><strong aria-hidden="true">4.</strong> Drawing APIs</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="drawing/drawing_area.html"><strong aria-hidden="true">4.1.</strong> Drawing areas</a></li><li class="chapter-item expanded "><a href="drawing/elements.html"><strong aria-hidden="true">4.2.</strong> Elements</a></li></ol></li><li class="chapter-item expanded "><a href="coord/coord_system.html"><strong aria-hidden="true">5.</strong> Coordinate systems</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="coord/one_diml.html"><strong aria-hidden="true">5.1.</strong> 1D coordinates</a></li><li class="chapter-item expanded "><a href="coord/high_dim.html"><strong aria-hidden="true">5.2.</strong> High dimensional coordinates</a></li><li class="chapter-item expanded "><a href="coord/coord_combinators.html"><strong aria-hidden="true">5.3.</strong> Coordinate combinators</a></li></ol></li><li class="chapter-item expanded "><a href="backends/overview.html"><strong aria-hidden="true">6.</strong> Targeting different backends</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="backends/backends.html"><strong aria-hidden="true">6.1.</strong> Drawing backends</a></li><li class="chapter-item expanded "><a href="backends/canvas_backend.html"><strong aria-hidden="true">6.2.</strong> HTML5 Canvas</a></li><li class="chapter-item expanded "><a href="backends/fb.html"><strong aria-hidden="true">6.3.</strong> Framebuffer</a></li></ol></li><li class="chapter-item expanded "><a href="perf/overview.html"><strong aria-hidden="true">7.</strong> Performance</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="perf/parallel_blit.html"><strong aria-hidden="true">7.1.</strong> Parallel Rendering with Bitmap Blit</a></li><li class="chapter-item expanded "><a href="perf/inplace_rendering.html"><strong aria-hidden="true">7.2.</strong> Inplace Parallel Rendering</a></li><li class="chapter-item expanded "><a href="perf/incremental_rendering.html"><strong aria-hidden="true">7.3.</strong> Incremental Rendering</a></li></ol></li><li class="chapter-item expanded "><a href="extend/overview.html"><strong aria-hidden="true">8.</strong> Extend Plotters</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="extend/coord.html"><strong aria-hidden="true">8.1.</strong> Adding coordinate type</a></li><li class="chapter-item expanded "><a href="extend/series.html"><strong aria-hidden="true">8.2.</strong> Adding series types</a></li><li class="chapter-item expanded "><a href="extend/backend.html"><strong aria-hidden="true">8.3.</strong> Support new backend</a></li></ol></li><li class="chapter-item expanded "><a href="appendix/index.html"><strong aria-hidden="true">9.</strong> Appendix</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="appendix/supported_backends.html"><strong aria-hidden="true">9.1.</strong> Supported backends</a></li></ol></li></ol>
99+
</div>
100+
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
101+
</nav>
102+
103+
<div id="page-wrapper" class="page-wrapper">
104+
105+
<div class="page">
106+
107+
<div id="menu-bar-hover-placeholder"></div>
108+
<div id="menu-bar" class="menu-bar sticky bordered">
109+
<div class="left-buttons">
110+
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
111+
<i class="fa fa-bars"></i>
112+
</button>
113+
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
114+
<i class="fa fa-paint-brush"></i>
115+
</button>
116+
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
117+
<li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li>
118+
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
119+
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
120+
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
121+
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
122+
</ul>
123+
124+
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
125+
<i class="fa fa-search"></i>
126+
</button>
127+
128+
</div>
129+
130+
<h1 class="menu-title">Plotter Developer&#x27;s Guide</h1>
131+
132+
<div class="right-buttons">
133+
<a href="print.html" title="Print this book" aria-label="Print this book">
134+
<i id="print-button" class="fa fa-print"></i>
135+
</a>
136+
137+
</div>
138+
</div>
139+
140+
141+
<div id="search-wrapper" class="hidden">
142+
<form id="searchbar-outer" class="searchbar-outer">
143+
<input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
144+
</form>
145+
<div id="searchresults-outer" class="searchresults-outer hidden">
146+
<div id="searchresults-header" class="searchresults-header"></div>
147+
<ul id="searchresults">
148+
</ul>
149+
</div>
150+
</div>
151+
152+
153+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
154+
<script type="text/javascript">
155+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
156+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
157+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
158+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
159+
});
160+
</script>
161+
162+
<div id="content" class="content">
163+
<main>
164+
<h1><a class="header" href="#document-not-found-404" id="document-not-found-404">Document not found (404)</a></h1>
165+
<p>This URL is invalid, sorry. Please use the navigation bar or search to continue.</p>
166+
167+
</main>
168+
169+
<nav class="nav-wrapper" aria-label="Page navigation">
170+
<!-- Mobile navigation buttons -->
171+
172+
173+
174+
175+
<div style="clear: both"></div>
176+
</nav>
177+
</div>
178+
</div>
179+
180+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
181+
182+
183+
184+
</nav>
185+
186+
</div>
187+
188+
189+
190+
191+
192+
193+
194+
195+
<script type="text/javascript">
196+
window.playground_copyable = true;
197+
</script>
198+
199+
200+
201+
202+
203+
<script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script>
204+
<script src="mark.min.js" type="text/javascript" charset="utf-8"></script>
205+
<script src="searcher.js" type="text/javascript" charset="utf-8"></script>
206+
207+
208+
<script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script>
209+
<script src="highlight.js" type="text/javascript" charset="utf-8"></script>
210+
<script src="book.js" type="text/javascript" charset="utf-8"></script>
211+
212+
<!-- Custom JS scripts -->
213+
214+
215+
216+
217+
</body>
218+
</html>

0 commit comments

Comments
 (0)