Deploying to gh-pages from @ 51b2984ee3 🚀

This commit is contained in:
TonyCrane 2021-06-12 10:33:13 +00:00
parent dd0bffa095
commit 998c149398
27 changed files with 181 additions and 128 deletions

View file

@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 8427171e2350e8c0be3fff507b9c34b6
config: 650570dee05afa6059462e088be39c01
tags: 645f666f9bcd5a90fca523b33c5a78b7

View file

@ -450,8 +450,7 @@ CoordinateSystemExample
# system defined by them.
f_always(dot.move_to, lambda: axes.c2p(1, 1))
self.play(
axes.animate.scale(0.75),
axes.animate.to_corner(UL),
axes.animate.scale(0.75).to_corner(UL),
run_time=2,
)
self.wait()

4
_static/check-solid.svg Normal file
View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-check" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M5 12l5 5l10 -10" />
</svg>

After

Width:  |  Height:  |  Size: 320 B

View file

@ -1,29 +1,31 @@
/* Copy buttons */
a.copybtn {
button.copybtn {
position: absolute;
top: .2em;
right: .2em;
width: 1em;
height: 1em;
opacity: .3;
transition: opacity 0.5s;
border: none;
top: .3em;
right: .5em;
width: 1.7rem;
height: 1.7rem;
opacity: 0;
transition: opacity 0.3s, border .3s;
user-select: none;
padding: 0;
border: none;
outline: none;
}
button.copybtn img {
width: 100%;
}
div.highlight {
position: relative;
}
a.copybtn > img {
vertical-align: top;
margin: 0;
top: 0;
left: 0;
position: absolute;
.highlight:hover button.copybtn {
opacity: .7;
}
.highlight:hover .copybtn {
.highlight button.copybtn:hover {
opacity: 1;
}

View file

@ -17,6 +17,24 @@ const messages = {
'copy_to_clipboard': 'In die Zwischenablage kopieren',
'copy_success': 'Kopiert!',
'copy_failure': 'Fehler beim Kopieren',
},
'fr' : {
'copy': 'Copier',
'copy_to_clipboard': 'Copié dans le presse-papier',
'copy_success': 'Copié !',
'copy_failure': 'Échec de la copie',
},
'ru': {
'copy': 'Скопировать',
'copy_to_clipboard': 'Скопировать в буфер',
'copy_success': 'Скопировано!',
'copy_failure': 'Не удалось скопировать',
},
'zh-CN': {
'copy': '复制',
'copy_to_clipboard': '复制到剪贴板',
'copy_success': '复制成功!',
'copy_failure': '复制失败',
}
}
@ -26,6 +44,8 @@ if( document.documentElement.lang !== undefined
locale = document.documentElement.lang
}
const path_static = `${DOCUMENTATION_OPTIONS.URL_ROOT}_static/`;
/**
* Set up copy/paste for code blocks
*/
@ -54,12 +74,18 @@ const clearSelection = () => {
}
// Changes tooltip text for two seconds, then changes it back
const temporarilyChangeTooltip = (el, newText) => {
const oldText = el.getAttribute('data-tooltip')
const temporarilyChangeTooltip = (el, oldText, newText) => {
el.setAttribute('data-tooltip', newText)
setTimeout(() => el.setAttribute('data-tooltip', oldText), 2000)
}
// Changes the copy button icon for two seconds, then changes it back
const temporarilyChangeIcon = (el) => {
img = el.querySelector("img");
img.setAttribute('src', `${path_static}check-solid.svg`)
setTimeout(() => img.setAttribute('src', `${path_static}copy-button.svg`), 2000)
}
const addCopyButtonToCodeCells = () => {
// If ClipboardJS hasn't loaded, wait a bit and try again. This
// happens because we load ClipboardJS asynchronously.
@ -76,9 +102,9 @@ const addCopyButtonToCodeCells = () => {
const pre_bg = getComputedStyle(codeCell).backgroundColor;
const clipboardButton = id =>
`<a class="copybtn o-tooltip--left" style="background-color: ${pre_bg}" data-tooltip="${messages[locale]['copy']}" data-clipboard-target="#${id}">
<img src="${DOCUMENTATION_OPTIONS.URL_ROOT}_static/copy-button.svg" alt="${messages[locale]['copy_to_clipboard']}">
</a>`
`<button class="copybtn o-tooltip--left" style="background-color: ${pre_bg}" data-tooltip="${messages[locale]['copy']}" data-clipboard-target="#${id}">
<img src="${path_static}copy-button.svg" alt="${messages[locale]['copy_to_clipboard']}">
</button>`
codeCell.insertAdjacentHTML('afterend', clipboardButton(id))
})
@ -88,11 +114,15 @@ function escapeRegExp(string) {
// Callback when a copy button is clicked. Will be passed the node that was clicked
// should then grab the text and replace pieces of text that shouldn't be used in output
function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true) {
function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") {
var regexp;
var match;
// Do we check for line continuation characters and "HERE-documents"?
var useLineCont = !!lineContinuationChar
var useHereDoc = !!hereDocDelim
// create regexp to capture prompt and remaining line
if (isRegexp) {
regexp = new RegExp('^(' + copybuttonPromptText + ')(.*)')
@ -102,24 +132,31 @@ function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onl
const outputLines = [];
var promptFound = false;
var gotLineCont = false;
var gotHereDoc = false;
const lineGotPrompt = [];
for (const line of textContent.split('\n')) {
match = line.match(regexp)
if (match) {
promptFound = true
if (removePrompts) {
if (match || gotLineCont || gotHereDoc) {
promptFound = regexp.test(line)
lineGotPrompt.push(promptFound)
if (removePrompts && promptFound) {
outputLines.push(match[2])
} else {
outputLines.push(line)
}
} else {
if (!onlyCopyPromptLines) {
outputLines.push(line)
}
gotLineCont = line.endsWith(lineContinuationChar) & useLineCont
if (line.includes(hereDocDelim) & useHereDoc)
gotHereDoc = !gotHereDoc
} else if (!onlyCopyPromptLines) {
outputLines.push(line)
} else if (copyEmptyLines && line.trim() === '') {
outputLines.push(line)
}
}
// If no lines with the prompt were found then just use original lines
if (promptFound) {
if (lineGotPrompt.some(v => v === true)) {
textContent = outputLines.join('\n');
}
@ -133,7 +170,7 @@ function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onl
var copyTargetText = (trigger) => {
var target = document.querySelector(trigger.attributes['data-clipboard-target'].value);
return formatCopyText(target.innerText, '', false, true, true)
return formatCopyText(target.innerText, '', false, true, true, true, '', '')
}
// Initialize with a callback so we can modify the text before copy
@ -142,11 +179,12 @@ var copyTargetText = (trigger) => {
// Update UI with error/success messages
clipboard.on('success', event => {
clearSelection()
temporarilyChangeTooltip(event.trigger, messages[locale]['copy_success'])
temporarilyChangeTooltip(event.trigger, messages[locale]['copy'], messages[locale]['copy_success'])
temporarilyChangeIcon(event.trigger)
})
clipboard.on('error', event => {
temporarilyChangeTooltip(event.trigger, messages[locale]['copy_failure'])
temporarilyChangeTooltip(event.trigger, messages[locale]['copy'], messages[locale]['copy_failure'])
})
}

View file

@ -4,11 +4,15 @@ function escapeRegExp(string) {
// Callback when a copy button is clicked. Will be passed the node that was clicked
// should then grab the text and replace pieces of text that shouldn't be used in output
export function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true) {
export function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") {
var regexp;
var match;
// Do we check for line continuation characters and "HERE-documents"?
var useLineCont = !!lineContinuationChar
var useHereDoc = !!hereDocDelim
// create regexp to capture prompt and remaining line
if (isRegexp) {
regexp = new RegExp('^(' + copybuttonPromptText + ')(.*)')
@ -18,24 +22,31 @@ export function formatCopyText(textContent, copybuttonPromptText, isRegexp = fal
const outputLines = [];
var promptFound = false;
var gotLineCont = false;
var gotHereDoc = false;
const lineGotPrompt = [];
for (const line of textContent.split('\n')) {
match = line.match(regexp)
if (match) {
promptFound = true
if (removePrompts) {
if (match || gotLineCont || gotHereDoc) {
promptFound = regexp.test(line)
lineGotPrompt.push(promptFound)
if (removePrompts && promptFound) {
outputLines.push(match[2])
} else {
outputLines.push(line)
}
} else {
if (!onlyCopyPromptLines) {
outputLines.push(line)
}
gotLineCont = line.endsWith(lineContinuationChar) & useLineCont
if (line.includes(hereDocDelim) & useHereDoc)
gotHereDoc = !gotHereDoc
} else if (!onlyCopyPromptLines) {
outputLines.push(line)
} else if (copyEmptyLines && line.trim() === '') {
outputLines.push(line)
}
}
// If no lines with the prompt were found then just use original lines
if (promptFound) {
if (lineGotPrompt.some(v => v === true)) {
textContent = outputLines.join('\n');
}

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="prev" title="Contributing" href="contributing.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?979abfafdd5d370adeae3bb4">
<link rel="stylesheet" href="../_static/pygments.css?979abfafdd5d370adeae3bb4">
<link rel="stylesheet" href="../_static/styles/default.css?c0c9be0dbc58246295e647c2">
<link rel="stylesheet" href="../_static/pygments.css?c0c9be0dbc58246295e647c2">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?979abfafdd5d370adeae3bb4"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?c0c9be0dbc58246295e647c2"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Contributing" href="contributing.html" /><link rel="prev" title="custom_config" href="../documentation/custom_config.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?1191e1a7aa6f72fa2c132857">
<link rel="stylesheet" href="../_static/pygments.css?1191e1a7aa6f72fa2c132857">
<link rel="stylesheet" href="../_static/styles/default.css?22311ccda1a78f8e7af4d9ef">
<link rel="stylesheet" href="../_static/pygments.css?22311ccda1a78f8e7af4d9ef">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?1191e1a7aa6f72fa2c132857"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?22311ccda1a78f8e7af4d9ef"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="About" href="about.html" /><link rel="prev" title="Changelog" href="changelog.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?023e4798a61ef20046963ee5">
<link rel="stylesheet" href="../_static/pygments.css?023e4798a61ef20046963ee5">
<link rel="stylesheet" href="../_static/styles/default.css?2514379df9ccaf3ed87adee5">
<link rel="stylesheet" href="../_static/pygments.css?2514379df9ccaf3ed87adee5">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?023e4798a61ef20046963ee5"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?2514379df9ccaf3ed87adee5"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../../genindex.html" /><link rel="search" title="Search" href="../../search.html" />
<link rel="shortcut icon" href="../../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="../../_static/custom.css" />
<link rel="stylesheet" href="../../_static/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?ce4dfcc4253e583eb0b084d7">
<link rel="stylesheet" href="../../_static/pygments.css?ce4dfcc4253e583eb0b084d7">
<link rel="stylesheet" href="../../_static/styles/default.css?87c601a011d850a743b3153e">
<link rel="stylesheet" href="../../_static/pygments.css?87c601a011d850a743b3153e">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?ce4dfcc4253e583eb0b084d7"></script></head>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?87c601a011d850a743b3153e"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../../genindex.html" /><link rel="search" title="Search" href="../../search.html" />
<link rel="shortcut icon" href="../../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="../../_static/custom.css" />
<link rel="stylesheet" href="../../_static/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?843cfed741e0363ae048b82e">
<link rel="stylesheet" href="../../_static/pygments.css?843cfed741e0363ae048b82e">
<link rel="stylesheet" href="../../_static/styles/default.css?b4fb4fb7e5369d48a33019d7">
<link rel="stylesheet" href="../../_static/pygments.css?b4fb4fb7e5369d48a33019d7">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?843cfed741e0363ae048b82e"></script></head>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?b4fb4fb7e5369d48a33019d7"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="custom_config" href="custom_config.html" /><link rel="prev" title="Whats new" href="../getting_started/whatsnew.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?3f8601368763580a95824b77">
<link rel="stylesheet" href="../_static/pygments.css?3f8601368763580a95824b77">
<link rel="stylesheet" href="../_static/styles/default.css?d7bb55cf33ee16d006db571b">
<link rel="stylesheet" href="../_static/pygments.css?d7bb55cf33ee16d006db571b">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?3f8601368763580a95824b77"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?d7bb55cf33ee16d006db571b"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Changelog" href="../development/changelog.html" /><link rel="prev" title="constants" href="constants.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?d84f201f6bce82e4d0a3c262">
<link rel="stylesheet" href="../_static/pygments.css?d84f201f6bce82e4d0a3c262">
<link rel="stylesheet" href="../_static/styles/default.css?429ab38cba9b807e90c3aab8">
<link rel="stylesheet" href="../_static/pygments.css?429ab38cba9b807e90c3aab8">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?d84f201f6bce82e4d0a3c262"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?429ab38cba9b807e90c3aab8"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../../genindex.html" /><link rel="search" title="Search" href="../../search.html" />
<link rel="shortcut icon" href="../../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="../../_static/custom.css" />
<link rel="stylesheet" href="../../_static/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?176f154e1e6186a173c6dfb9">
<link rel="stylesheet" href="../../_static/pygments.css?176f154e1e6186a173c6dfb9">
<link rel="stylesheet" href="../../_static/styles/default.css?455acc30d835ea0160a84f4b">
<link rel="stylesheet" href="../../_static/pygments.css?455acc30d835ea0160a84f4b">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?176f154e1e6186a173c6dfb9"></script></head>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?455acc30d835ea0160a84f4b"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../../genindex.html" /><link rel="search" title="Search" href="../../search.html" />
<link rel="shortcut icon" href="../../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="../../_static/custom.css" />
<link rel="stylesheet" href="../../_static/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?c223d4dbd66e6a0c19d2c34f">
<link rel="stylesheet" href="../../_static/pygments.css?c223d4dbd66e6a0c19d2c34f">
<link rel="stylesheet" href="../../_static/styles/default.css?5a14a244e8f07d9883d37f01">
<link rel="stylesheet" href="../../_static/pygments.css?5a14a244e8f07d9883d37f01">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?c223d4dbd66e6a0c19d2c34f"></script></head>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?5a14a244e8f07d9883d37f01"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../../genindex.html" /><link rel="search" title="Search" href="../../search.html" />
<link rel="shortcut icon" href="../../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="../../_static/custom.css" />
<link rel="stylesheet" href="../../_static/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?12e26a4d060b86d5e8ec4deb">
<link rel="stylesheet" href="../../_static/pygments.css?12e26a4d060b86d5e8ec4deb">
<link rel="stylesheet" href="../../_static/styles/default.css?413c26e94091c9d4eb5727c3">
<link rel="stylesheet" href="../../_static/pygments.css?413c26e94091c9d4eb5727c3">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?12e26a4d060b86d5e8ec4deb"></script></head>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?413c26e94091c9d4eb5727c3"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../../genindex.html" /><link rel="search" title="Search" href="../../search.html" />
<link rel="shortcut icon" href="../../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="../../_static/custom.css" />
<link rel="stylesheet" href="../../_static/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?8fe51ca4cbcb1ed05ade0508">
<link rel="stylesheet" href="../../_static/pygments.css?8fe51ca4cbcb1ed05ade0508">
<link rel="stylesheet" href="../../_static/styles/default.css?bc12b97f88cf65dfd1696fb0">
<link rel="stylesheet" href="../../_static/pygments.css?bc12b97f88cf65dfd1696fb0">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?8fe51ca4cbcb1ed05ade0508"></script></head>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?bc12b97f88cf65dfd1696fb0"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -8,8 +8,8 @@
<link rel="stylesheet" href="_static/copybutton.css" />
<link rel="stylesheet" href="_static/custom.css" />
<link rel="stylesheet" href="_static/colors.css" />
<link rel="stylesheet" href="_static/styles/default.css?d4c983b8f56669e844304dfc">
<link rel="stylesheet" href="_static/pygments.css?d4c983b8f56669e844304dfc">
<link rel="stylesheet" href="_static/styles/default.css?e73178f6ef40b5ccb4117315">
<link rel="stylesheet" href="_static/pygments.css?e73178f6ef40b5ccb4117315">
<style>
:root {
@ -26,7 +26,7 @@
<script src="_static/language_data.js" defer></script>
<script src="_static/clipboard.min.js"></script>
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?d4c983b8f56669e844304dfc"></script></head>
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?e73178f6ef40b5ccb4117315"></script></head>
<body dir="">
</body>

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Manims structure" href="structure.html" /><link rel="prev" title="Example Scenes" href="example_scenes.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?9d9bcb4b86564058381c5c6c">
<link rel="stylesheet" href="../_static/pygments.css?9d9bcb4b86564058381c5c6c">
<link rel="stylesheet" href="../_static/styles/default.css?22b2f044f16d07416a23c33d">
<link rel="stylesheet" href="../_static/pygments.css?22b2f044f16d07416a23c33d">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?9d9bcb4b86564058381c5c6c"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?22b2f044f16d07416a23c33d"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Example Scenes" href="example_scenes.html" /><link rel="prev" title="Quick Start" href="quickstart.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?6ef2c2194c863d485a3ad7d5">
<link rel="stylesheet" href="../_static/pygments.css?6ef2c2194c863d485a3ad7d5">
<link rel="stylesheet" href="../_static/styles/default.css?eb41f574d460dd605d6cc401">
<link rel="stylesheet" href="../_static/pygments.css?eb41f574d460dd605d6cc401">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?6ef2c2194c863d485a3ad7d5"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?eb41f574d460dd605d6cc401"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="CONFIG dictionary" href="config.html" /><link rel="prev" title="CLI flags and configuration" href="configuration.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?a6e34897ba4fe32cb34cac0f">
<link rel="stylesheet" href="../_static/pygments.css?a6e34897ba4fe32cb34cac0f">
<link rel="stylesheet" href="../_static/styles/default.css?e1c1245728be3b8780fa28ab">
<link rel="stylesheet" href="../_static/pygments.css?e1c1245728be3b8780fa28ab">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?a6e34897ba4fe32cb34cac0f"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?e1c1245728be3b8780fa28ab"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
@ -556,8 +556,7 @@ and <code class="docutils literal notranslate"><span class="pre">TransformMatchi
<span class="c1"># system defined by them.</span>
<span class="n">f_always</span><span class="p">(</span><span class="n">dot</span><span class="o">.</span><span class="n">move_to</span><span class="p">,</span> <span class="k">lambda</span><span class="p">:</span> <span class="n">axes</span><span class="o">.</span><span class="n">c2p</span><span class="p">(</span><span class="mi">1</span><span class="p">,</span> <span class="mi">1</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">play</span><span class="p">(</span>
<span class="n">axes</span><span class="o">.</span><span class="n">animate</span><span class="o">.</span><span class="n">scale</span><span class="p">(</span><span class="mf">0.75</span><span class="p">),</span>
<span class="n">axes</span><span class="o">.</span><span class="n">animate</span><span class="o">.</span><span class="n">to_corner</span><span class="p">(</span><span class="n">UL</span><span class="p">),</span>
<span class="n">axes</span><span class="o">.</span><span class="n">animate</span><span class="o">.</span><span class="n">scale</span><span class="p">(</span><span class="mf">0.75</span><span class="p">)</span><span class="o">.</span><span class="n">to_corner</span><span class="p">(</span><span class="n">UL</span><span class="p">),</span>
<span class="n">run_time</span><span class="o">=</span><span class="mi">2</span><span class="p">,</span>
<span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">wait</span><span class="p">()</span>

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Quick Start" href="quickstart.html" /><link rel="prev" title="Manims documentation" href="../index.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?d66d901c9201bdfa1976e98d">
<link rel="stylesheet" href="../_static/pygments.css?d66d901c9201bdfa1976e98d">
<link rel="stylesheet" href="../_static/styles/default.css?e3c53b5793f22448c9cf4d1b">
<link rel="stylesheet" href="../_static/pygments.css?e3c53b5793f22448c9cf4d1b">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?d66d901c9201bdfa1976e98d"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?e3c53b5793f22448c9cf4d1b"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="CLI flags and configuration" href="configuration.html" /><link rel="prev" title="Installation" href="installation.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?51159c9290109452dd4f2e38">
<link rel="stylesheet" href="../_static/pygments.css?51159c9290109452dd4f2e38">
<link rel="stylesheet" href="../_static/styles/default.css?0be95fb975a4abfc03f41149">
<link rel="stylesheet" href="../_static/pygments.css?0be95fb975a4abfc03f41149">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?51159c9290109452dd4f2e38"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?0be95fb975a4abfc03f41149"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Whats new" href="whatsnew.html" /><link rel="prev" title="CONFIG dictionary" href="config.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?71f07df0de02a1008c4ae7b8">
<link rel="stylesheet" href="../_static/pygments.css?71f07df0de02a1008c4ae7b8">
<link rel="stylesheet" href="../_static/styles/default.css?43ad32a99553eb41dbfd42b7">
<link rel="stylesheet" href="../_static/pygments.css?43ad32a99553eb41dbfd42b7">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?71f07df0de02a1008c4ae7b8"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?43ad32a99553eb41dbfd42b7"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="constants" href="../documentation/constants.html" /><link rel="prev" title="Manims structure" href="structure.html" />
<link rel="shortcut icon" href="../_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="../_static/custom.css" />
<link rel="stylesheet" href="../_static/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?4d5a848047800b0045e10ae1">
<link rel="stylesheet" href="../_static/pygments.css?4d5a848047800b0045e10ae1">
<link rel="stylesheet" href="../_static/styles/default.css?e026aea65c831b24a9102364">
<link rel="stylesheet" href="../_static/pygments.css?e026aea65c831b24a9102364">
<style>
:root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?4d5a848047800b0045e10ae1"></script></head>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?e026aea65c831b24a9102364"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -1,7 +1,7 @@
<!doctype html>
<html class="no-js">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="Installation" href="getting_started/installation.html" />
<link rel="shortcut icon" href="_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/>
@ -9,8 +9,8 @@
<link rel="stylesheet" href="_static/copybutton.css" />
<link rel="stylesheet" href="_static/custom.css" />
<link rel="stylesheet" href="_static/colors.css" />
<link rel="stylesheet" href="_static/styles/default.css?623b39aac8049feab9f7f564">
<link rel="stylesheet" href="_static/pygments.css?623b39aac8049feab9f7f564">
<link rel="stylesheet" href="_static/styles/default.css?55474384189db49fe01789d0">
<link rel="stylesheet" href="_static/pygments.css?55474384189db49fe01789d0">
<style>
:root {
@ -27,7 +27,7 @@
<script src="_static/language_data.js" defer></script>
<script src="_static/clipboard.min.js"></script>
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?623b39aac8049feab9f7f564"></script></head>
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?55474384189db49fe01789d0"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -6,8 +6,8 @@
<link rel="shortcut icon" href="_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/><title>Search - manim documentation</title><link rel="stylesheet" href="_static/copybutton.css" />
<link rel="stylesheet" href="_static/custom.css" />
<link rel="stylesheet" href="_static/colors.css" />
<link rel="stylesheet" href="_static/styles/default.css?c760d82a079e5cf53c46ec65">
<link rel="stylesheet" href="_static/pygments.css?c760d82a079e5cf53c46ec65">
<link rel="stylesheet" href="_static/styles/default.css?91ca713f85c59d9a1773a2be">
<link rel="stylesheet" href="_static/pygments.css?91ca713f85c59d9a1773a2be">
<style>
:root {
@ -25,7 +25,7 @@
<script src="_static/clipboard.min.js"></script>
<script src="_static/copybutton.js"></script>
<script src="_static/searchtools.js" defer></script><script src="_static/scripts/main.js?c760d82a079e5cf53c46ec65"></script></head>
<script src="_static/searchtools.js" defer></script><script src="_static/scripts/main.js?91ca713f85c59d9a1773a2be"></script></head>
<body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">