diff --git a/latest/.doctrees/api/generated/compas_occ.brep.OCCBrep.simplify.doctree b/latest/.doctrees/api/generated/compas_occ.brep.OCCBrep.simplify.doctree index 6a65f5b4e..823c3881c 100644 Binary files a/latest/.doctrees/api/generated/compas_occ.brep.OCCBrep.simplify.doctree and b/latest/.doctrees/api/generated/compas_occ.brep.OCCBrep.simplify.doctree differ diff --git a/latest/.doctrees/environment.pickle b/latest/.doctrees/environment.pickle index 08784f672..fe15eea3d 100644 Binary files a/latest/.doctrees/environment.pickle and b/latest/.doctrees/environment.pickle differ diff --git a/latest/_sphinx_design_static/design-tabs.js b/latest/_sphinx_design_static/design-tabs.js index 36b38cf0d..b25bd6a4f 100644 --- a/latest/_sphinx_design_static/design-tabs.js +++ b/latest/_sphinx_design_static/design-tabs.js @@ -1,27 +1,101 @@ -var sd_labels_by_text = {}; +// @ts-check +// Extra JS capability for selected tabs to be synced +// The selection is stored in local storage so that it persists across page loads. + +/** + * @type {Record} + */ +let sd_id_to_elements = {}; +const storageKeyPrefix = "sphinx-design-tab-id-"; + +/** + * Create a key for a tab element. + * @param {HTMLElement} el - The tab element. + * @returns {[string, string, string] | null} - The key. + * + */ +function create_key(el) { + let syncId = el.getAttribute("data-sync-id"); + let syncGroup = el.getAttribute("data-sync-group"); + if (!syncId || !syncGroup) return null; + return [syncGroup, syncId, syncGroup + "--" + syncId]; +} + +/** + * Initialize the tab selection. + * + */ function ready() { - const li = document.getElementsByClassName("sd-tab-label"); - for (const label of li) { - syncId = label.getAttribute("data-sync-id"); - if (syncId) { - label.onclick = onLabelClick; - if (!sd_labels_by_text[syncId]) { - sd_labels_by_text[syncId] = []; + // Find all tabs with sync data + + /** @type {string[]} */ + let groups = []; + + document.querySelectorAll(".sd-tab-label").forEach((label) => { + if (label instanceof HTMLElement) { + let data = create_key(label); + if (data) { + let [group, id, key] = data; + + // add click event listener + // @ts-ignore + label.onclick = onSDLabelClick; + + // store map of key to elements + if (!sd_id_to_elements[key]) { + sd_id_to_elements[key] = []; + } + sd_id_to_elements[key].push(label); + + if (groups.indexOf(group) === -1) { + groups.push(group); + // Check if a specific tab has been selected via URL parameter + const tabParam = new URLSearchParams(window.location.search).get( + group + ); + if (tabParam) { + console.log( + "sphinx-design: Selecting tab id for group '" + + group + + "' from URL parameter: " + + tabParam + ); + window.sessionStorage.setItem(storageKeyPrefix + group, tabParam); + } + } + + // Check is a specific tab has been selected previously + let previousId = window.sessionStorage.getItem( + storageKeyPrefix + group + ); + if (previousId === id) { + // console.log( + // "sphinx-design: Selecting tab from session storage: " + id + // ); + // @ts-ignore + label.previousElementSibling.checked = true; + } } - sd_labels_by_text[syncId].push(label); } - } + }); } -function onLabelClick() { - // Activate other inputs with the same sync id. - syncId = this.getAttribute("data-sync-id"); - for (label of sd_labels_by_text[syncId]) { +/** + * Activate other tabs with the same sync id. + * + * @this {HTMLElement} - The element that was clicked. + */ +function onSDLabelClick() { + let data = create_key(this); + if (!data) return; + let [group, id, key] = data; + for (const label of sd_id_to_elements[key]) { if (label === this) continue; + // @ts-ignore label.previousElementSibling.checked = true; } - window.localStorage.setItem("sphinx-design-last-tab", syncId); + window.sessionStorage.setItem(storageKeyPrefix + group, id); } document.addEventListener("DOMContentLoaded", ready, false); diff --git a/latest/_sphinx_design_static/sphinx-design.5ea377869091fd0449014c60fc090103.min.css b/latest/_sphinx_design_static/sphinx-design.5ea377869091fd0449014c60fc090103.min.css new file mode 100644 index 000000000..a325746f2 --- /dev/null +++ b/latest/_sphinx_design_static/sphinx-design.5ea377869091fd0449014c60fc090103.min.css @@ -0,0 +1 @@ +.sd-bg-primary{background-color:var(--sd-color-primary) !important}.sd-bg-text-primary{color:var(--sd-color-primary-text) !important}button.sd-bg-primary:focus,button.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}a.sd-bg-primary:focus,a.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}.sd-bg-secondary{background-color:var(--sd-color-secondary) !important}.sd-bg-text-secondary{color:var(--sd-color-secondary-text) !important}button.sd-bg-secondary:focus,button.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}a.sd-bg-secondary:focus,a.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}.sd-bg-success{background-color:var(--sd-color-success) !important}.sd-bg-text-success{color:var(--sd-color-success-text) !important}button.sd-bg-success:focus,button.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}a.sd-bg-success:focus,a.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}.sd-bg-info{background-color:var(--sd-color-info) !important}.sd-bg-text-info{color:var(--sd-color-info-text) !important}button.sd-bg-info:focus,button.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}a.sd-bg-info:focus,a.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}.sd-bg-warning{background-color:var(--sd-color-warning) !important}.sd-bg-text-warning{color:var(--sd-color-warning-text) !important}button.sd-bg-warning:focus,button.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}a.sd-bg-warning:focus,a.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}.sd-bg-danger{background-color:var(--sd-color-danger) !important}.sd-bg-text-danger{color:var(--sd-color-danger-text) !important}button.sd-bg-danger:focus,button.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}a.sd-bg-danger:focus,a.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}.sd-bg-light{background-color:var(--sd-color-light) !important}.sd-bg-text-light{color:var(--sd-color-light-text) !important}button.sd-bg-light:focus,button.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}a.sd-bg-light:focus,a.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}.sd-bg-muted{background-color:var(--sd-color-muted) !important}.sd-bg-text-muted{color:var(--sd-color-muted-text) !important}button.sd-bg-muted:focus,button.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}a.sd-bg-muted:focus,a.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}.sd-bg-dark{background-color:var(--sd-color-dark) !important}.sd-bg-text-dark{color:var(--sd-color-dark-text) !important}button.sd-bg-dark:focus,button.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}a.sd-bg-dark:focus,a.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}.sd-bg-black{background-color:var(--sd-color-black) !important}.sd-bg-text-black{color:var(--sd-color-black-text) !important}button.sd-bg-black:focus,button.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}a.sd-bg-black:focus,a.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}.sd-bg-white{background-color:var(--sd-color-white) !important}.sd-bg-text-white{color:var(--sd-color-white-text) !important}button.sd-bg-white:focus,button.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}a.sd-bg-white:focus,a.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}.sd-text-primary,.sd-text-primary>p{color:var(--sd-color-primary) !important}a.sd-text-primary:focus,a.sd-text-primary:hover{color:var(--sd-color-primary-highlight) !important}.sd-text-secondary,.sd-text-secondary>p{color:var(--sd-color-secondary) !important}a.sd-text-secondary:focus,a.sd-text-secondary:hover{color:var(--sd-color-secondary-highlight) !important}.sd-text-success,.sd-text-success>p{color:var(--sd-color-success) !important}a.sd-text-success:focus,a.sd-text-success:hover{color:var(--sd-color-success-highlight) !important}.sd-text-info,.sd-text-info>p{color:var(--sd-color-info) !important}a.sd-text-info:focus,a.sd-text-info:hover{color:var(--sd-color-info-highlight) !important}.sd-text-warning,.sd-text-warning>p{color:var(--sd-color-warning) !important}a.sd-text-warning:focus,a.sd-text-warning:hover{color:var(--sd-color-warning-highlight) !important}.sd-text-danger,.sd-text-danger>p{color:var(--sd-color-danger) !important}a.sd-text-danger:focus,a.sd-text-danger:hover{color:var(--sd-color-danger-highlight) !important}.sd-text-light,.sd-text-light>p{color:var(--sd-color-light) !important}a.sd-text-light:focus,a.sd-text-light:hover{color:var(--sd-color-light-highlight) !important}.sd-text-muted,.sd-text-muted>p{color:var(--sd-color-muted) !important}a.sd-text-muted:focus,a.sd-text-muted:hover{color:var(--sd-color-muted-highlight) !important}.sd-text-dark,.sd-text-dark>p{color:var(--sd-color-dark) !important}a.sd-text-dark:focus,a.sd-text-dark:hover{color:var(--sd-color-dark-highlight) !important}.sd-text-black,.sd-text-black>p{color:var(--sd-color-black) !important}a.sd-text-black:focus,a.sd-text-black:hover{color:var(--sd-color-black-highlight) !important}.sd-text-white,.sd-text-white>p{color:var(--sd-color-white) !important}a.sd-text-white:focus,a.sd-text-white:hover{color:var(--sd-color-white-highlight) !important}.sd-outline-primary{border-color:var(--sd-color-primary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-primary:focus,a.sd-outline-primary:hover{border-color:var(--sd-color-primary-highlight) !important}.sd-outline-secondary{border-color:var(--sd-color-secondary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-secondary:focus,a.sd-outline-secondary:hover{border-color:var(--sd-color-secondary-highlight) !important}.sd-outline-success{border-color:var(--sd-color-success) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-success:focus,a.sd-outline-success:hover{border-color:var(--sd-color-success-highlight) !important}.sd-outline-info{border-color:var(--sd-color-info) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-info:focus,a.sd-outline-info:hover{border-color:var(--sd-color-info-highlight) !important}.sd-outline-warning{border-color:var(--sd-color-warning) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-warning:focus,a.sd-outline-warning:hover{border-color:var(--sd-color-warning-highlight) !important}.sd-outline-danger{border-color:var(--sd-color-danger) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-danger:focus,a.sd-outline-danger:hover{border-color:var(--sd-color-danger-highlight) !important}.sd-outline-light{border-color:var(--sd-color-light) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-light:focus,a.sd-outline-light:hover{border-color:var(--sd-color-light-highlight) !important}.sd-outline-muted{border-color:var(--sd-color-muted) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-muted:focus,a.sd-outline-muted:hover{border-color:var(--sd-color-muted-highlight) !important}.sd-outline-dark{border-color:var(--sd-color-dark) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-dark:focus,a.sd-outline-dark:hover{border-color:var(--sd-color-dark-highlight) !important}.sd-outline-black{border-color:var(--sd-color-black) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-black:focus,a.sd-outline-black:hover{border-color:var(--sd-color-black-highlight) !important}.sd-outline-white{border-color:var(--sd-color-white) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-white:focus,a.sd-outline-white:hover{border-color:var(--sd-color-white-highlight) !important}.sd-bg-transparent{background-color:transparent !important}.sd-outline-transparent{border-color:transparent !important}.sd-text-transparent{color:transparent !important}.sd-p-0{padding:0 !important}.sd-pt-0,.sd-py-0{padding-top:0 !important}.sd-pr-0,.sd-px-0{padding-right:0 !important}.sd-pb-0,.sd-py-0{padding-bottom:0 !important}.sd-pl-0,.sd-px-0{padding-left:0 !important}.sd-p-1{padding:.25rem !important}.sd-pt-1,.sd-py-1{padding-top:.25rem !important}.sd-pr-1,.sd-px-1{padding-right:.25rem !important}.sd-pb-1,.sd-py-1{padding-bottom:.25rem !important}.sd-pl-1,.sd-px-1{padding-left:.25rem !important}.sd-p-2{padding:.5rem !important}.sd-pt-2,.sd-py-2{padding-top:.5rem !important}.sd-pr-2,.sd-px-2{padding-right:.5rem !important}.sd-pb-2,.sd-py-2{padding-bottom:.5rem !important}.sd-pl-2,.sd-px-2{padding-left:.5rem !important}.sd-p-3{padding:1rem !important}.sd-pt-3,.sd-py-3{padding-top:1rem !important}.sd-pr-3,.sd-px-3{padding-right:1rem !important}.sd-pb-3,.sd-py-3{padding-bottom:1rem !important}.sd-pl-3,.sd-px-3{padding-left:1rem !important}.sd-p-4{padding:1.5rem !important}.sd-pt-4,.sd-py-4{padding-top:1.5rem !important}.sd-pr-4,.sd-px-4{padding-right:1.5rem !important}.sd-pb-4,.sd-py-4{padding-bottom:1.5rem !important}.sd-pl-4,.sd-px-4{padding-left:1.5rem !important}.sd-p-5{padding:3rem !important}.sd-pt-5,.sd-py-5{padding-top:3rem !important}.sd-pr-5,.sd-px-5{padding-right:3rem !important}.sd-pb-5,.sd-py-5{padding-bottom:3rem !important}.sd-pl-5,.sd-px-5{padding-left:3rem !important}.sd-m-auto{margin:auto !important}.sd-mt-auto,.sd-my-auto{margin-top:auto !important}.sd-mr-auto,.sd-mx-auto{margin-right:auto !important}.sd-mb-auto,.sd-my-auto{margin-bottom:auto !important}.sd-ml-auto,.sd-mx-auto{margin-left:auto !important}.sd-m-0{margin:0 !important}.sd-mt-0,.sd-my-0{margin-top:0 !important}.sd-mr-0,.sd-mx-0{margin-right:0 !important}.sd-mb-0,.sd-my-0{margin-bottom:0 !important}.sd-ml-0,.sd-mx-0{margin-left:0 !important}.sd-m-1{margin:.25rem !important}.sd-mt-1,.sd-my-1{margin-top:.25rem !important}.sd-mr-1,.sd-mx-1{margin-right:.25rem !important}.sd-mb-1,.sd-my-1{margin-bottom:.25rem !important}.sd-ml-1,.sd-mx-1{margin-left:.25rem !important}.sd-m-2{margin:.5rem !important}.sd-mt-2,.sd-my-2{margin-top:.5rem !important}.sd-mr-2,.sd-mx-2{margin-right:.5rem !important}.sd-mb-2,.sd-my-2{margin-bottom:.5rem !important}.sd-ml-2,.sd-mx-2{margin-left:.5rem !important}.sd-m-3{margin:1rem !important}.sd-mt-3,.sd-my-3{margin-top:1rem !important}.sd-mr-3,.sd-mx-3{margin-right:1rem !important}.sd-mb-3,.sd-my-3{margin-bottom:1rem !important}.sd-ml-3,.sd-mx-3{margin-left:1rem !important}.sd-m-4{margin:1.5rem !important}.sd-mt-4,.sd-my-4{margin-top:1.5rem !important}.sd-mr-4,.sd-mx-4{margin-right:1.5rem !important}.sd-mb-4,.sd-my-4{margin-bottom:1.5rem !important}.sd-ml-4,.sd-mx-4{margin-left:1.5rem !important}.sd-m-5{margin:3rem !important}.sd-mt-5,.sd-my-5{margin-top:3rem !important}.sd-mr-5,.sd-mx-5{margin-right:3rem !important}.sd-mb-5,.sd-my-5{margin-bottom:3rem !important}.sd-ml-5,.sd-mx-5{margin-left:3rem !important}.sd-w-25{width:25% !important}.sd-w-50{width:50% !important}.sd-w-75{width:75% !important}.sd-w-100{width:100% !important}.sd-w-auto{width:auto !important}.sd-h-25{height:25% !important}.sd-h-50{height:50% !important}.sd-h-75{height:75% !important}.sd-h-100{height:100% !important}.sd-h-auto{height:auto !important}.sd-d-none{display:none !important}.sd-d-inline{display:inline !important}.sd-d-inline-block{display:inline-block !important}.sd-d-block{display:block !important}.sd-d-grid{display:grid !important}.sd-d-flex-row{display:-ms-flexbox !important;display:flex !important;flex-direction:row !important}.sd-d-flex-column{display:-ms-flexbox !important;display:flex !important;flex-direction:column !important}.sd-d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media(min-width: 576px){.sd-d-sm-none{display:none !important}.sd-d-sm-inline{display:inline !important}.sd-d-sm-inline-block{display:inline-block !important}.sd-d-sm-block{display:block !important}.sd-d-sm-grid{display:grid !important}.sd-d-sm-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 768px){.sd-d-md-none{display:none !important}.sd-d-md-inline{display:inline !important}.sd-d-md-inline-block{display:inline-block !important}.sd-d-md-block{display:block !important}.sd-d-md-grid{display:grid !important}.sd-d-md-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 992px){.sd-d-lg-none{display:none !important}.sd-d-lg-inline{display:inline !important}.sd-d-lg-inline-block{display:inline-block !important}.sd-d-lg-block{display:block !important}.sd-d-lg-grid{display:grid !important}.sd-d-lg-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 1200px){.sd-d-xl-none{display:none !important}.sd-d-xl-inline{display:inline !important}.sd-d-xl-inline-block{display:inline-block !important}.sd-d-xl-block{display:block !important}.sd-d-xl-grid{display:grid !important}.sd-d-xl-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.sd-align-major-start{justify-content:flex-start !important}.sd-align-major-end{justify-content:flex-end !important}.sd-align-major-center{justify-content:center !important}.sd-align-major-justify{justify-content:space-between !important}.sd-align-major-spaced{justify-content:space-evenly !important}.sd-align-minor-start{align-items:flex-start !important}.sd-align-minor-end{align-items:flex-end !important}.sd-align-minor-center{align-items:center !important}.sd-align-minor-stretch{align-items:stretch !important}.sd-text-justify{text-align:justify !important}.sd-text-left{text-align:left !important}.sd-text-right{text-align:right !important}.sd-text-center{text-align:center !important}.sd-font-weight-light{font-weight:300 !important}.sd-font-weight-lighter{font-weight:lighter !important}.sd-font-weight-normal{font-weight:400 !important}.sd-font-weight-bold{font-weight:700 !important}.sd-font-weight-bolder{font-weight:bolder !important}.sd-font-italic{font-style:italic !important}.sd-text-decoration-none{text-decoration:none !important}.sd-text-lowercase{text-transform:lowercase !important}.sd-text-uppercase{text-transform:uppercase !important}.sd-text-capitalize{text-transform:capitalize !important}.sd-text-wrap{white-space:normal !important}.sd-text-nowrap{white-space:nowrap !important}.sd-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sd-fs-1,.sd-fs-1>p{font-size:calc(1.375rem + 1.5vw) !important;line-height:unset !important}.sd-fs-2,.sd-fs-2>p{font-size:calc(1.325rem + 0.9vw) !important;line-height:unset !important}.sd-fs-3,.sd-fs-3>p{font-size:calc(1.3rem + 0.6vw) !important;line-height:unset !important}.sd-fs-4,.sd-fs-4>p{font-size:calc(1.275rem + 0.3vw) !important;line-height:unset !important}.sd-fs-5,.sd-fs-5>p{font-size:1.25rem !important;line-height:unset !important}.sd-fs-6,.sd-fs-6>p{font-size:1rem !important;line-height:unset !important}.sd-border-0{border:0 solid !important}.sd-border-top-0{border-top:0 solid !important}.sd-border-bottom-0{border-bottom:0 solid !important}.sd-border-right-0{border-right:0 solid !important}.sd-border-left-0{border-left:0 solid !important}.sd-border-1{border:1px solid !important}.sd-border-top-1{border-top:1px solid !important}.sd-border-bottom-1{border-bottom:1px solid !important}.sd-border-right-1{border-right:1px solid !important}.sd-border-left-1{border-left:1px solid !important}.sd-border-2{border:2px solid !important}.sd-border-top-2{border-top:2px solid !important}.sd-border-bottom-2{border-bottom:2px solid !important}.sd-border-right-2{border-right:2px solid !important}.sd-border-left-2{border-left:2px solid !important}.sd-border-3{border:3px solid !important}.sd-border-top-3{border-top:3px solid !important}.sd-border-bottom-3{border-bottom:3px solid !important}.sd-border-right-3{border-right:3px solid !important}.sd-border-left-3{border-left:3px solid !important}.sd-border-4{border:4px solid !important}.sd-border-top-4{border-top:4px solid !important}.sd-border-bottom-4{border-bottom:4px solid !important}.sd-border-right-4{border-right:4px solid !important}.sd-border-left-4{border-left:4px solid !important}.sd-border-5{border:5px solid !important}.sd-border-top-5{border-top:5px solid !important}.sd-border-bottom-5{border-bottom:5px solid !important}.sd-border-right-5{border-right:5px solid !important}.sd-border-left-5{border-left:5px solid !important}.sd-rounded-0{border-radius:0 !important}.sd-rounded-1{border-radius:.2rem !important}.sd-rounded-2{border-radius:.3rem !important}.sd-rounded-3{border-radius:.5rem !important}.sd-rounded-pill{border-radius:50rem !important}.sd-rounded-circle{border-radius:50% !important}.shadow-none{box-shadow:none !important}.sd-shadow-sm{box-shadow:0 .125rem .25rem var(--sd-color-shadow) !important}.sd-shadow-md{box-shadow:0 .5rem 1rem var(--sd-color-shadow) !important}.sd-shadow-lg{box-shadow:0 1rem 3rem var(--sd-color-shadow) !important}@keyframes sd-slide-from-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes sd-slide-from-right{0%{transform:translateX(200%)}100%{transform:translateX(0)}}@keyframes sd-grow100{0%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50{0%{transform:scale(0.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50-rot20{0%{transform:scale(0.5) rotateZ(-20deg);opacity:.5}75%{transform:scale(1) rotateZ(5deg);opacity:1}95%{transform:scale(1) rotateZ(-1deg);opacity:1}100%{transform:scale(1) rotateZ(0);opacity:1}}.sd-animate-slide-from-left{animation:1s ease-out 0s 1 normal none running sd-slide-from-left}.sd-animate-slide-from-right{animation:1s ease-out 0s 1 normal none running sd-slide-from-right}.sd-animate-grow100{animation:1s ease-out 0s 1 normal none running sd-grow100}.sd-animate-grow50{animation:1s ease-out 0s 1 normal none running sd-grow50}.sd-animate-grow50-rot20{animation:1s ease-out 0s 1 normal none running sd-grow50-rot20}.sd-badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.sd-badge:empty{display:none}a.sd-badge{text-decoration:none}.sd-btn .sd-badge{position:relative;top:-1px}.sd-btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;cursor:pointer;display:inline-block;font-weight:400;font-size:1rem;line-height:1.5;padding:.375rem .75rem;text-align:center;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:middle;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.sd-btn:hover{text-decoration:none}@media(prefers-reduced-motion: reduce){.sd-btn{transition:none}}.sd-btn-primary,.sd-btn-outline-primary:hover,.sd-btn-outline-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-primary:hover,.sd-btn-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary-highlight) !important;border-color:var(--sd-color-primary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-primary{color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary,.sd-btn-outline-secondary:hover,.sd-btn-outline-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary:hover,.sd-btn-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary-highlight) !important;border-color:var(--sd-color-secondary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-secondary{color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success,.sd-btn-outline-success:hover,.sd-btn-outline-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success:hover,.sd-btn-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success-highlight) !important;border-color:var(--sd-color-success-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-success{color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info,.sd-btn-outline-info:hover,.sd-btn-outline-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info:hover,.sd-btn-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info-highlight) !important;border-color:var(--sd-color-info-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-info{color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning,.sd-btn-outline-warning:hover,.sd-btn-outline-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning:hover,.sd-btn-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning-highlight) !important;border-color:var(--sd-color-warning-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-warning{color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger,.sd-btn-outline-danger:hover,.sd-btn-outline-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger:hover,.sd-btn-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger-highlight) !important;border-color:var(--sd-color-danger-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-danger{color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light,.sd-btn-outline-light:hover,.sd-btn-outline-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light:hover,.sd-btn-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light-highlight) !important;border-color:var(--sd-color-light-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-light{color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted,.sd-btn-outline-muted:hover,.sd-btn-outline-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted:hover,.sd-btn-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted-highlight) !important;border-color:var(--sd-color-muted-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-muted{color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark,.sd-btn-outline-dark:hover,.sd-btn-outline-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark:hover,.sd-btn-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark-highlight) !important;border-color:var(--sd-color-dark-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-dark{color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black,.sd-btn-outline-black:hover,.sd-btn-outline-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black:hover,.sd-btn-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black-highlight) !important;border-color:var(--sd-color-black-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-black{color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white,.sd-btn-outline-white:hover,.sd-btn-outline-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white:hover,.sd-btn-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white-highlight) !important;border-color:var(--sd-color-white-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-white{color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.sd-hide-link-text{font-size:0}.sd-octicon,.sd-material-icon{display:inline-block;fill:currentColor;vertical-align:middle}.sd-avatar-xs{border-radius:50%;object-fit:cover;object-position:center;width:1rem;height:1rem}.sd-avatar-sm{border-radius:50%;object-fit:cover;object-position:center;width:3rem;height:3rem}.sd-avatar-md{border-radius:50%;object-fit:cover;object-position:center;width:5rem;height:5rem}.sd-avatar-lg{border-radius:50%;object-fit:cover;object-position:center;width:7rem;height:7rem}.sd-avatar-xl{border-radius:50%;object-fit:cover;object-position:center;width:10rem;height:10rem}.sd-avatar-inherit{border-radius:50%;object-fit:cover;object-position:center;width:inherit;height:inherit}.sd-avatar-initial{border-radius:50%;object-fit:cover;object-position:center;width:initial;height:initial}.sd-card{background-clip:border-box;background-color:var(--sd-color-card-background);border:1px solid var(--sd-color-card-border);border-radius:.25rem;color:var(--sd-color-card-text);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.sd-card>hr{margin-left:0;margin-right:0}.sd-card-hover:hover{border-color:var(--sd-color-card-border-hover);transform:scale(1.01)}.sd-card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.sd-card-title{margin-bottom:.5rem}.sd-card-subtitle{margin-top:-0.25rem;margin-bottom:0}.sd-card-text:last-child{margin-bottom:0}.sd-card-link:hover{text-decoration:none}.sd-card-link+.card-link{margin-left:1rem}.sd-card-header{padding:.5rem 1rem;margin-bottom:0;background-color:var(--sd-color-card-header);border-bottom:1px solid var(--sd-color-card-border)}.sd-card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.sd-card-footer{padding:.5rem 1rem;background-color:var(--sd-color-card-footer);border-top:1px solid var(--sd-color-card-border)}.sd-card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.sd-card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.sd-card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.sd-card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom,.sd-card-img-top{width:100%}.sd-card-img,.sd-card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom{border-bottom-left-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.sd-cards-carousel{width:100%;display:flex;flex-wrap:nowrap;-ms-flex-direction:row;flex-direction:row;overflow-x:hidden;scroll-snap-type:x mandatory}.sd-cards-carousel.sd-show-scrollbar{overflow-x:auto}.sd-cards-carousel:hover,.sd-cards-carousel:focus{overflow-x:auto}.sd-cards-carousel>.sd-card{flex-shrink:0;scroll-snap-align:start}.sd-cards-carousel>.sd-card:not(:last-child){margin-right:3px}.sd-card-cols-1>.sd-card{width:90%}.sd-card-cols-2>.sd-card{width:45%}.sd-card-cols-3>.sd-card{width:30%}.sd-card-cols-4>.sd-card{width:22.5%}.sd-card-cols-5>.sd-card{width:18%}.sd-card-cols-6>.sd-card{width:15%}.sd-card-cols-7>.sd-card{width:12.8571428571%}.sd-card-cols-8>.sd-card{width:11.25%}.sd-card-cols-9>.sd-card{width:10%}.sd-card-cols-10>.sd-card{width:9%}.sd-card-cols-11>.sd-card{width:8.1818181818%}.sd-card-cols-12>.sd-card{width:7.5%}.sd-container,.sd-container-fluid,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container-xl{margin-left:auto;margin-right:auto;padding-left:var(--sd-gutter-x, 0.75rem);padding-right:var(--sd-gutter-x, 0.75rem);width:100%}@media(min-width: 576px){.sd-container-sm,.sd-container{max-width:540px}}@media(min-width: 768px){.sd-container-md,.sd-container-sm,.sd-container{max-width:720px}}@media(min-width: 992px){.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:960px}}@media(min-width: 1200px){.sd-container-xl,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:1140px}}.sd-row{--sd-gutter-x: 1.5rem;--sd-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(var(--sd-gutter-y) * -1);margin-right:calc(var(--sd-gutter-x) * -0.5);margin-left:calc(var(--sd-gutter-x) * -0.5)}.sd-row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--sd-gutter-x) * 0.5);padding-left:calc(var(--sd-gutter-x) * 0.5);margin-top:var(--sd-gutter-y)}.sd-col{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-auto>*{flex:0 0 auto;width:auto}.sd-row-cols-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}@media(min-width: 576px){.sd-col-sm{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-sm-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-sm-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-sm-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-sm-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-sm-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-sm-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-sm-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-sm-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-sm-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-sm-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-sm-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-sm-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-sm-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 768px){.sd-col-md{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-md-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-md-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-md-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-md-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-md-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-md-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-md-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-md-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-md-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-md-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-md-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-md-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-md-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 992px){.sd-col-lg{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-lg-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-lg-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-lg-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-lg-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-lg-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-lg-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-lg-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-lg-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-lg-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-lg-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-lg-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-lg-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-lg-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 1200px){.sd-col-xl{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-xl-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-xl-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-xl-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-xl-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-xl-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-xl-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-xl-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-xl-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-xl-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-xl-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-xl-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-xl-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-xl-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}.sd-col-auto{flex:0 0 auto;-ms-flex:0 0 auto;width:auto}.sd-col-1{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}.sd-col-2{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-col-3{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-col-4{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-col-5{flex:0 0 auto;-ms-flex:0 0 auto;width:41.6666666667%}.sd-col-6{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-col-7{flex:0 0 auto;-ms-flex:0 0 auto;width:58.3333333333%}.sd-col-8{flex:0 0 auto;-ms-flex:0 0 auto;width:66.6666666667%}.sd-col-9{flex:0 0 auto;-ms-flex:0 0 auto;width:75%}.sd-col-10{flex:0 0 auto;-ms-flex:0 0 auto;width:83.3333333333%}.sd-col-11{flex:0 0 auto;-ms-flex:0 0 auto;width:91.6666666667%}.sd-col-12{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-g-0,.sd-gy-0{--sd-gutter-y: 0}.sd-g-0,.sd-gx-0{--sd-gutter-x: 0}.sd-g-1,.sd-gy-1{--sd-gutter-y: 0.25rem}.sd-g-1,.sd-gx-1{--sd-gutter-x: 0.25rem}.sd-g-2,.sd-gy-2{--sd-gutter-y: 0.5rem}.sd-g-2,.sd-gx-2{--sd-gutter-x: 0.5rem}.sd-g-3,.sd-gy-3{--sd-gutter-y: 1rem}.sd-g-3,.sd-gx-3{--sd-gutter-x: 1rem}.sd-g-4,.sd-gy-4{--sd-gutter-y: 1.5rem}.sd-g-4,.sd-gx-4{--sd-gutter-x: 1.5rem}.sd-g-5,.sd-gy-5{--sd-gutter-y: 3rem}.sd-g-5,.sd-gx-5{--sd-gutter-x: 3rem}@media(min-width: 576px){.sd-col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-sm-0,.sd-gy-sm-0{--sd-gutter-y: 0}.sd-g-sm-0,.sd-gx-sm-0{--sd-gutter-x: 0}.sd-g-sm-1,.sd-gy-sm-1{--sd-gutter-y: 0.25rem}.sd-g-sm-1,.sd-gx-sm-1{--sd-gutter-x: 0.25rem}.sd-g-sm-2,.sd-gy-sm-2{--sd-gutter-y: 0.5rem}.sd-g-sm-2,.sd-gx-sm-2{--sd-gutter-x: 0.5rem}.sd-g-sm-3,.sd-gy-sm-3{--sd-gutter-y: 1rem}.sd-g-sm-3,.sd-gx-sm-3{--sd-gutter-x: 1rem}.sd-g-sm-4,.sd-gy-sm-4{--sd-gutter-y: 1.5rem}.sd-g-sm-4,.sd-gx-sm-4{--sd-gutter-x: 1.5rem}.sd-g-sm-5,.sd-gy-sm-5{--sd-gutter-y: 3rem}.sd-g-sm-5,.sd-gx-sm-5{--sd-gutter-x: 3rem}}@media(min-width: 768px){.sd-col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-md-0,.sd-gy-md-0{--sd-gutter-y: 0}.sd-g-md-0,.sd-gx-md-0{--sd-gutter-x: 0}.sd-g-md-1,.sd-gy-md-1{--sd-gutter-y: 0.25rem}.sd-g-md-1,.sd-gx-md-1{--sd-gutter-x: 0.25rem}.sd-g-md-2,.sd-gy-md-2{--sd-gutter-y: 0.5rem}.sd-g-md-2,.sd-gx-md-2{--sd-gutter-x: 0.5rem}.sd-g-md-3,.sd-gy-md-3{--sd-gutter-y: 1rem}.sd-g-md-3,.sd-gx-md-3{--sd-gutter-x: 1rem}.sd-g-md-4,.sd-gy-md-4{--sd-gutter-y: 1.5rem}.sd-g-md-4,.sd-gx-md-4{--sd-gutter-x: 1.5rem}.sd-g-md-5,.sd-gy-md-5{--sd-gutter-y: 3rem}.sd-g-md-5,.sd-gx-md-5{--sd-gutter-x: 3rem}}@media(min-width: 992px){.sd-col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-lg-0,.sd-gy-lg-0{--sd-gutter-y: 0}.sd-g-lg-0,.sd-gx-lg-0{--sd-gutter-x: 0}.sd-g-lg-1,.sd-gy-lg-1{--sd-gutter-y: 0.25rem}.sd-g-lg-1,.sd-gx-lg-1{--sd-gutter-x: 0.25rem}.sd-g-lg-2,.sd-gy-lg-2{--sd-gutter-y: 0.5rem}.sd-g-lg-2,.sd-gx-lg-2{--sd-gutter-x: 0.5rem}.sd-g-lg-3,.sd-gy-lg-3{--sd-gutter-y: 1rem}.sd-g-lg-3,.sd-gx-lg-3{--sd-gutter-x: 1rem}.sd-g-lg-4,.sd-gy-lg-4{--sd-gutter-y: 1.5rem}.sd-g-lg-4,.sd-gx-lg-4{--sd-gutter-x: 1.5rem}.sd-g-lg-5,.sd-gy-lg-5{--sd-gutter-y: 3rem}.sd-g-lg-5,.sd-gx-lg-5{--sd-gutter-x: 3rem}}@media(min-width: 1200px){.sd-col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-xl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-xl-0,.sd-gy-xl-0{--sd-gutter-y: 0}.sd-g-xl-0,.sd-gx-xl-0{--sd-gutter-x: 0}.sd-g-xl-1,.sd-gy-xl-1{--sd-gutter-y: 0.25rem}.sd-g-xl-1,.sd-gx-xl-1{--sd-gutter-x: 0.25rem}.sd-g-xl-2,.sd-gy-xl-2{--sd-gutter-y: 0.5rem}.sd-g-xl-2,.sd-gx-xl-2{--sd-gutter-x: 0.5rem}.sd-g-xl-3,.sd-gy-xl-3{--sd-gutter-y: 1rem}.sd-g-xl-3,.sd-gx-xl-3{--sd-gutter-x: 1rem}.sd-g-xl-4,.sd-gy-xl-4{--sd-gutter-y: 1.5rem}.sd-g-xl-4,.sd-gx-xl-4{--sd-gutter-x: 1.5rem}.sd-g-xl-5,.sd-gy-xl-5{--sd-gutter-y: 3rem}.sd-g-xl-5,.sd-gx-xl-5{--sd-gutter-x: 3rem}}.sd-flex-row-reverse{flex-direction:row-reverse !important}details.sd-dropdown{position:relative;font-size:var(--sd-fontsize-dropdown)}details.sd-dropdown:hover{cursor:pointer}details.sd-dropdown .sd-summary-content{cursor:default}details.sd-dropdown summary.sd-summary-title{padding:.5em 1em;font-size:var(--sd-fontsize-dropdown-title);font-weight:var(--sd-fontweight-dropdown-title);user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;list-style:none;display:inline-flex;justify-content:space-between}details.sd-dropdown summary.sd-summary-title::-webkit-details-marker{display:none}details.sd-dropdown summary.sd-summary-title:focus{outline:none}details.sd-dropdown summary.sd-summary-title .sd-summary-icon{margin-right:.6em;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-icon svg{opacity:.8}details.sd-dropdown summary.sd-summary-title .sd-summary-text{flex-grow:1;line-height:1.5;padding-right:.5rem}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker{pointer-events:none;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker svg{opacity:.6}details.sd-dropdown summary.sd-summary-title:hover .sd-summary-state-marker svg{opacity:1;transform:scale(1.1)}details.sd-dropdown[open] summary .sd-octicon.no-title{visibility:hidden}details.sd-dropdown .sd-summary-chevron-right{transition:.25s}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-right{transform:rotate(90deg)}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-down{transform:rotate(180deg)}details.sd-dropdown:not([open]).sd-card{border:none}details.sd-dropdown:not([open])>.sd-card-header{border:1px solid var(--sd-color-card-border);border-radius:.25rem}details.sd-dropdown.sd-fade-in[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out;animation:sd-fade-in .5s ease-in-out}details.sd-dropdown.sd-fade-in-slide-down[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out}.sd-col>.sd-dropdown{width:100%}.sd-summary-content>.sd-tab-set:first-child{margin-top:0}@keyframes sd-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes sd-slide-down{0%{transform:translate(0, -10px)}100%{transform:translate(0, 0)}}.sd-tab-set{border-radius:.125rem;display:flex;flex-wrap:wrap;margin:1em 0;position:relative}.sd-tab-set>input{opacity:0;position:absolute}.sd-tab-set>input:checked+label{border-color:var(--sd-color-tabs-underline-active);color:var(--sd-color-tabs-label-active)}.sd-tab-set>input:checked+label+.sd-tab-content{display:block}.sd-tab-set>input:not(:checked)+label:hover{color:var(--sd-color-tabs-label-hover);border-color:var(--sd-color-tabs-underline-hover)}.sd-tab-set>input:focus+label{outline-style:auto}.sd-tab-set>input:not(.focus-visible)+label{outline:none;-webkit-tap-highlight-color:transparent}.sd-tab-set>label{border-bottom:.125rem solid transparent;margin-bottom:0;color:var(--sd-color-tabs-label-inactive);border-color:var(--sd-color-tabs-underline-inactive);cursor:pointer;font-size:var(--sd-fontsize-tabs-label);font-weight:700;padding:1em 1.25em .5em;transition:color 250ms;width:auto;z-index:1}html .sd-tab-set>label:hover{color:var(--sd-color-tabs-label-active)}.sd-col>.sd-tab-set{width:100%}.sd-tab-content{box-shadow:0 -0.0625rem var(--sd-color-tabs-overline),0 .0625rem var(--sd-color-tabs-underline);display:none;order:99;padding-bottom:.75rem;padding-top:.75rem;width:100%}.sd-tab-content>:first-child{margin-top:0 !important}.sd-tab-content>:last-child{margin-bottom:0 !important}.sd-tab-content>.sd-tab-set{margin:0}.sd-sphinx-override,.sd-sphinx-override *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sd-sphinx-override p{margin-top:0}:root{--sd-color-primary: #0071bc;--sd-color-secondary: #6c757d;--sd-color-success: #28a745;--sd-color-info: #17a2b8;--sd-color-warning: #f0b37e;--sd-color-danger: #dc3545;--sd-color-light: #f8f9fa;--sd-color-muted: #6c757d;--sd-color-dark: #212529;--sd-color-black: black;--sd-color-white: white;--sd-color-primary-highlight: #0060a0;--sd-color-secondary-highlight: #5c636a;--sd-color-success-highlight: #228e3b;--sd-color-info-highlight: #148a9c;--sd-color-warning-highlight: #cc986b;--sd-color-danger-highlight: #bb2d3b;--sd-color-light-highlight: #d3d4d5;--sd-color-muted-highlight: #5c636a;--sd-color-dark-highlight: #1c1f23;--sd-color-black-highlight: black;--sd-color-white-highlight: #d9d9d9;--sd-color-primary-bg: rgba(0, 113, 188, 0.2);--sd-color-secondary-bg: rgba(108, 117, 125, 0.2);--sd-color-success-bg: rgba(40, 167, 69, 0.2);--sd-color-info-bg: rgba(23, 162, 184, 0.2);--sd-color-warning-bg: rgba(240, 179, 126, 0.2);--sd-color-danger-bg: rgba(220, 53, 69, 0.2);--sd-color-light-bg: rgba(248, 249, 250, 0.2);--sd-color-muted-bg: rgba(108, 117, 125, 0.2);--sd-color-dark-bg: rgba(33, 37, 41, 0.2);--sd-color-black-bg: rgba(0, 0, 0, 0.2);--sd-color-white-bg: rgba(255, 255, 255, 0.2);--sd-color-primary-text: #fff;--sd-color-secondary-text: #fff;--sd-color-success-text: #fff;--sd-color-info-text: #fff;--sd-color-warning-text: #212529;--sd-color-danger-text: #fff;--sd-color-light-text: #212529;--sd-color-muted-text: #fff;--sd-color-dark-text: #fff;--sd-color-black-text: #fff;--sd-color-white-text: #212529;--sd-color-shadow: rgba(0, 0, 0, 0.15);--sd-color-card-border: rgba(0, 0, 0, 0.125);--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);--sd-color-card-background: transparent;--sd-color-card-text: inherit;--sd-color-card-header: transparent;--sd-color-card-footer: transparent;--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);--sd-color-tabs-underline-inactive: transparent;--sd-color-tabs-overline: rgb(222, 222, 222);--sd-color-tabs-underline: rgb(222, 222, 222);--sd-fontsize-tabs-label: 1rem;--sd-fontsize-dropdown: inherit;--sd-fontsize-dropdown-title: 1rem;--sd-fontweight-dropdown-title: 700} diff --git a/latest/_static/design-tabs.js b/latest/_static/design-tabs.js index 36b38cf0d..b25bd6a4f 100644 --- a/latest/_static/design-tabs.js +++ b/latest/_static/design-tabs.js @@ -1,27 +1,101 @@ -var sd_labels_by_text = {}; +// @ts-check +// Extra JS capability for selected tabs to be synced +// The selection is stored in local storage so that it persists across page loads. + +/** + * @type {Record} + */ +let sd_id_to_elements = {}; +const storageKeyPrefix = "sphinx-design-tab-id-"; + +/** + * Create a key for a tab element. + * @param {HTMLElement} el - The tab element. + * @returns {[string, string, string] | null} - The key. + * + */ +function create_key(el) { + let syncId = el.getAttribute("data-sync-id"); + let syncGroup = el.getAttribute("data-sync-group"); + if (!syncId || !syncGroup) return null; + return [syncGroup, syncId, syncGroup + "--" + syncId]; +} + +/** + * Initialize the tab selection. + * + */ function ready() { - const li = document.getElementsByClassName("sd-tab-label"); - for (const label of li) { - syncId = label.getAttribute("data-sync-id"); - if (syncId) { - label.onclick = onLabelClick; - if (!sd_labels_by_text[syncId]) { - sd_labels_by_text[syncId] = []; + // Find all tabs with sync data + + /** @type {string[]} */ + let groups = []; + + document.querySelectorAll(".sd-tab-label").forEach((label) => { + if (label instanceof HTMLElement) { + let data = create_key(label); + if (data) { + let [group, id, key] = data; + + // add click event listener + // @ts-ignore + label.onclick = onSDLabelClick; + + // store map of key to elements + if (!sd_id_to_elements[key]) { + sd_id_to_elements[key] = []; + } + sd_id_to_elements[key].push(label); + + if (groups.indexOf(group) === -1) { + groups.push(group); + // Check if a specific tab has been selected via URL parameter + const tabParam = new URLSearchParams(window.location.search).get( + group + ); + if (tabParam) { + console.log( + "sphinx-design: Selecting tab id for group '" + + group + + "' from URL parameter: " + + tabParam + ); + window.sessionStorage.setItem(storageKeyPrefix + group, tabParam); + } + } + + // Check is a specific tab has been selected previously + let previousId = window.sessionStorage.getItem( + storageKeyPrefix + group + ); + if (previousId === id) { + // console.log( + // "sphinx-design: Selecting tab from session storage: " + id + // ); + // @ts-ignore + label.previousElementSibling.checked = true; + } } - sd_labels_by_text[syncId].push(label); } - } + }); } -function onLabelClick() { - // Activate other inputs with the same sync id. - syncId = this.getAttribute("data-sync-id"); - for (label of sd_labels_by_text[syncId]) { +/** + * Activate other tabs with the same sync id. + * + * @this {HTMLElement} - The element that was clicked. + */ +function onSDLabelClick() { + let data = create_key(this); + if (!data) return; + let [group, id, key] = data; + for (const label of sd_id_to_elements[key]) { if (label === this) continue; + // @ts-ignore label.previousElementSibling.checked = true; } - window.localStorage.setItem("sphinx-design-last-tab", syncId); + window.sessionStorage.setItem(storageKeyPrefix + group, id); } document.addEventListener("DOMContentLoaded", ready, false); diff --git a/latest/_static/sphinx-design.5ea377869091fd0449014c60fc090103.min.css b/latest/_static/sphinx-design.5ea377869091fd0449014c60fc090103.min.css new file mode 100644 index 000000000..a325746f2 --- /dev/null +++ b/latest/_static/sphinx-design.5ea377869091fd0449014c60fc090103.min.css @@ -0,0 +1 @@ +.sd-bg-primary{background-color:var(--sd-color-primary) !important}.sd-bg-text-primary{color:var(--sd-color-primary-text) !important}button.sd-bg-primary:focus,button.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}a.sd-bg-primary:focus,a.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}.sd-bg-secondary{background-color:var(--sd-color-secondary) !important}.sd-bg-text-secondary{color:var(--sd-color-secondary-text) !important}button.sd-bg-secondary:focus,button.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}a.sd-bg-secondary:focus,a.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}.sd-bg-success{background-color:var(--sd-color-success) !important}.sd-bg-text-success{color:var(--sd-color-success-text) !important}button.sd-bg-success:focus,button.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}a.sd-bg-success:focus,a.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}.sd-bg-info{background-color:var(--sd-color-info) !important}.sd-bg-text-info{color:var(--sd-color-info-text) !important}button.sd-bg-info:focus,button.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}a.sd-bg-info:focus,a.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}.sd-bg-warning{background-color:var(--sd-color-warning) !important}.sd-bg-text-warning{color:var(--sd-color-warning-text) !important}button.sd-bg-warning:focus,button.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}a.sd-bg-warning:focus,a.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}.sd-bg-danger{background-color:var(--sd-color-danger) !important}.sd-bg-text-danger{color:var(--sd-color-danger-text) !important}button.sd-bg-danger:focus,button.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}a.sd-bg-danger:focus,a.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}.sd-bg-light{background-color:var(--sd-color-light) !important}.sd-bg-text-light{color:var(--sd-color-light-text) !important}button.sd-bg-light:focus,button.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}a.sd-bg-light:focus,a.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}.sd-bg-muted{background-color:var(--sd-color-muted) !important}.sd-bg-text-muted{color:var(--sd-color-muted-text) !important}button.sd-bg-muted:focus,button.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}a.sd-bg-muted:focus,a.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}.sd-bg-dark{background-color:var(--sd-color-dark) !important}.sd-bg-text-dark{color:var(--sd-color-dark-text) !important}button.sd-bg-dark:focus,button.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}a.sd-bg-dark:focus,a.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}.sd-bg-black{background-color:var(--sd-color-black) !important}.sd-bg-text-black{color:var(--sd-color-black-text) !important}button.sd-bg-black:focus,button.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}a.sd-bg-black:focus,a.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}.sd-bg-white{background-color:var(--sd-color-white) !important}.sd-bg-text-white{color:var(--sd-color-white-text) !important}button.sd-bg-white:focus,button.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}a.sd-bg-white:focus,a.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}.sd-text-primary,.sd-text-primary>p{color:var(--sd-color-primary) !important}a.sd-text-primary:focus,a.sd-text-primary:hover{color:var(--sd-color-primary-highlight) !important}.sd-text-secondary,.sd-text-secondary>p{color:var(--sd-color-secondary) !important}a.sd-text-secondary:focus,a.sd-text-secondary:hover{color:var(--sd-color-secondary-highlight) !important}.sd-text-success,.sd-text-success>p{color:var(--sd-color-success) !important}a.sd-text-success:focus,a.sd-text-success:hover{color:var(--sd-color-success-highlight) !important}.sd-text-info,.sd-text-info>p{color:var(--sd-color-info) !important}a.sd-text-info:focus,a.sd-text-info:hover{color:var(--sd-color-info-highlight) !important}.sd-text-warning,.sd-text-warning>p{color:var(--sd-color-warning) !important}a.sd-text-warning:focus,a.sd-text-warning:hover{color:var(--sd-color-warning-highlight) !important}.sd-text-danger,.sd-text-danger>p{color:var(--sd-color-danger) !important}a.sd-text-danger:focus,a.sd-text-danger:hover{color:var(--sd-color-danger-highlight) !important}.sd-text-light,.sd-text-light>p{color:var(--sd-color-light) !important}a.sd-text-light:focus,a.sd-text-light:hover{color:var(--sd-color-light-highlight) !important}.sd-text-muted,.sd-text-muted>p{color:var(--sd-color-muted) !important}a.sd-text-muted:focus,a.sd-text-muted:hover{color:var(--sd-color-muted-highlight) !important}.sd-text-dark,.sd-text-dark>p{color:var(--sd-color-dark) !important}a.sd-text-dark:focus,a.sd-text-dark:hover{color:var(--sd-color-dark-highlight) !important}.sd-text-black,.sd-text-black>p{color:var(--sd-color-black) !important}a.sd-text-black:focus,a.sd-text-black:hover{color:var(--sd-color-black-highlight) !important}.sd-text-white,.sd-text-white>p{color:var(--sd-color-white) !important}a.sd-text-white:focus,a.sd-text-white:hover{color:var(--sd-color-white-highlight) !important}.sd-outline-primary{border-color:var(--sd-color-primary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-primary:focus,a.sd-outline-primary:hover{border-color:var(--sd-color-primary-highlight) !important}.sd-outline-secondary{border-color:var(--sd-color-secondary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-secondary:focus,a.sd-outline-secondary:hover{border-color:var(--sd-color-secondary-highlight) !important}.sd-outline-success{border-color:var(--sd-color-success) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-success:focus,a.sd-outline-success:hover{border-color:var(--sd-color-success-highlight) !important}.sd-outline-info{border-color:var(--sd-color-info) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-info:focus,a.sd-outline-info:hover{border-color:var(--sd-color-info-highlight) !important}.sd-outline-warning{border-color:var(--sd-color-warning) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-warning:focus,a.sd-outline-warning:hover{border-color:var(--sd-color-warning-highlight) !important}.sd-outline-danger{border-color:var(--sd-color-danger) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-danger:focus,a.sd-outline-danger:hover{border-color:var(--sd-color-danger-highlight) !important}.sd-outline-light{border-color:var(--sd-color-light) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-light:focus,a.sd-outline-light:hover{border-color:var(--sd-color-light-highlight) !important}.sd-outline-muted{border-color:var(--sd-color-muted) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-muted:focus,a.sd-outline-muted:hover{border-color:var(--sd-color-muted-highlight) !important}.sd-outline-dark{border-color:var(--sd-color-dark) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-dark:focus,a.sd-outline-dark:hover{border-color:var(--sd-color-dark-highlight) !important}.sd-outline-black{border-color:var(--sd-color-black) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-black:focus,a.sd-outline-black:hover{border-color:var(--sd-color-black-highlight) !important}.sd-outline-white{border-color:var(--sd-color-white) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-white:focus,a.sd-outline-white:hover{border-color:var(--sd-color-white-highlight) !important}.sd-bg-transparent{background-color:transparent !important}.sd-outline-transparent{border-color:transparent !important}.sd-text-transparent{color:transparent !important}.sd-p-0{padding:0 !important}.sd-pt-0,.sd-py-0{padding-top:0 !important}.sd-pr-0,.sd-px-0{padding-right:0 !important}.sd-pb-0,.sd-py-0{padding-bottom:0 !important}.sd-pl-0,.sd-px-0{padding-left:0 !important}.sd-p-1{padding:.25rem !important}.sd-pt-1,.sd-py-1{padding-top:.25rem !important}.sd-pr-1,.sd-px-1{padding-right:.25rem !important}.sd-pb-1,.sd-py-1{padding-bottom:.25rem !important}.sd-pl-1,.sd-px-1{padding-left:.25rem !important}.sd-p-2{padding:.5rem !important}.sd-pt-2,.sd-py-2{padding-top:.5rem !important}.sd-pr-2,.sd-px-2{padding-right:.5rem !important}.sd-pb-2,.sd-py-2{padding-bottom:.5rem !important}.sd-pl-2,.sd-px-2{padding-left:.5rem !important}.sd-p-3{padding:1rem !important}.sd-pt-3,.sd-py-3{padding-top:1rem !important}.sd-pr-3,.sd-px-3{padding-right:1rem !important}.sd-pb-3,.sd-py-3{padding-bottom:1rem !important}.sd-pl-3,.sd-px-3{padding-left:1rem !important}.sd-p-4{padding:1.5rem !important}.sd-pt-4,.sd-py-4{padding-top:1.5rem !important}.sd-pr-4,.sd-px-4{padding-right:1.5rem !important}.sd-pb-4,.sd-py-4{padding-bottom:1.5rem !important}.sd-pl-4,.sd-px-4{padding-left:1.5rem !important}.sd-p-5{padding:3rem !important}.sd-pt-5,.sd-py-5{padding-top:3rem !important}.sd-pr-5,.sd-px-5{padding-right:3rem !important}.sd-pb-5,.sd-py-5{padding-bottom:3rem !important}.sd-pl-5,.sd-px-5{padding-left:3rem !important}.sd-m-auto{margin:auto !important}.sd-mt-auto,.sd-my-auto{margin-top:auto !important}.sd-mr-auto,.sd-mx-auto{margin-right:auto !important}.sd-mb-auto,.sd-my-auto{margin-bottom:auto !important}.sd-ml-auto,.sd-mx-auto{margin-left:auto !important}.sd-m-0{margin:0 !important}.sd-mt-0,.sd-my-0{margin-top:0 !important}.sd-mr-0,.sd-mx-0{margin-right:0 !important}.sd-mb-0,.sd-my-0{margin-bottom:0 !important}.sd-ml-0,.sd-mx-0{margin-left:0 !important}.sd-m-1{margin:.25rem !important}.sd-mt-1,.sd-my-1{margin-top:.25rem !important}.sd-mr-1,.sd-mx-1{margin-right:.25rem !important}.sd-mb-1,.sd-my-1{margin-bottom:.25rem !important}.sd-ml-1,.sd-mx-1{margin-left:.25rem !important}.sd-m-2{margin:.5rem !important}.sd-mt-2,.sd-my-2{margin-top:.5rem !important}.sd-mr-2,.sd-mx-2{margin-right:.5rem !important}.sd-mb-2,.sd-my-2{margin-bottom:.5rem !important}.sd-ml-2,.sd-mx-2{margin-left:.5rem !important}.sd-m-3{margin:1rem !important}.sd-mt-3,.sd-my-3{margin-top:1rem !important}.sd-mr-3,.sd-mx-3{margin-right:1rem !important}.sd-mb-3,.sd-my-3{margin-bottom:1rem !important}.sd-ml-3,.sd-mx-3{margin-left:1rem !important}.sd-m-4{margin:1.5rem !important}.sd-mt-4,.sd-my-4{margin-top:1.5rem !important}.sd-mr-4,.sd-mx-4{margin-right:1.5rem !important}.sd-mb-4,.sd-my-4{margin-bottom:1.5rem !important}.sd-ml-4,.sd-mx-4{margin-left:1.5rem !important}.sd-m-5{margin:3rem !important}.sd-mt-5,.sd-my-5{margin-top:3rem !important}.sd-mr-5,.sd-mx-5{margin-right:3rem !important}.sd-mb-5,.sd-my-5{margin-bottom:3rem !important}.sd-ml-5,.sd-mx-5{margin-left:3rem !important}.sd-w-25{width:25% !important}.sd-w-50{width:50% !important}.sd-w-75{width:75% !important}.sd-w-100{width:100% !important}.sd-w-auto{width:auto !important}.sd-h-25{height:25% !important}.sd-h-50{height:50% !important}.sd-h-75{height:75% !important}.sd-h-100{height:100% !important}.sd-h-auto{height:auto !important}.sd-d-none{display:none !important}.sd-d-inline{display:inline !important}.sd-d-inline-block{display:inline-block !important}.sd-d-block{display:block !important}.sd-d-grid{display:grid !important}.sd-d-flex-row{display:-ms-flexbox !important;display:flex !important;flex-direction:row !important}.sd-d-flex-column{display:-ms-flexbox !important;display:flex !important;flex-direction:column !important}.sd-d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media(min-width: 576px){.sd-d-sm-none{display:none !important}.sd-d-sm-inline{display:inline !important}.sd-d-sm-inline-block{display:inline-block !important}.sd-d-sm-block{display:block !important}.sd-d-sm-grid{display:grid !important}.sd-d-sm-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 768px){.sd-d-md-none{display:none !important}.sd-d-md-inline{display:inline !important}.sd-d-md-inline-block{display:inline-block !important}.sd-d-md-block{display:block !important}.sd-d-md-grid{display:grid !important}.sd-d-md-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 992px){.sd-d-lg-none{display:none !important}.sd-d-lg-inline{display:inline !important}.sd-d-lg-inline-block{display:inline-block !important}.sd-d-lg-block{display:block !important}.sd-d-lg-grid{display:grid !important}.sd-d-lg-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 1200px){.sd-d-xl-none{display:none !important}.sd-d-xl-inline{display:inline !important}.sd-d-xl-inline-block{display:inline-block !important}.sd-d-xl-block{display:block !important}.sd-d-xl-grid{display:grid !important}.sd-d-xl-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.sd-align-major-start{justify-content:flex-start !important}.sd-align-major-end{justify-content:flex-end !important}.sd-align-major-center{justify-content:center !important}.sd-align-major-justify{justify-content:space-between !important}.sd-align-major-spaced{justify-content:space-evenly !important}.sd-align-minor-start{align-items:flex-start !important}.sd-align-minor-end{align-items:flex-end !important}.sd-align-minor-center{align-items:center !important}.sd-align-minor-stretch{align-items:stretch !important}.sd-text-justify{text-align:justify !important}.sd-text-left{text-align:left !important}.sd-text-right{text-align:right !important}.sd-text-center{text-align:center !important}.sd-font-weight-light{font-weight:300 !important}.sd-font-weight-lighter{font-weight:lighter !important}.sd-font-weight-normal{font-weight:400 !important}.sd-font-weight-bold{font-weight:700 !important}.sd-font-weight-bolder{font-weight:bolder !important}.sd-font-italic{font-style:italic !important}.sd-text-decoration-none{text-decoration:none !important}.sd-text-lowercase{text-transform:lowercase !important}.sd-text-uppercase{text-transform:uppercase !important}.sd-text-capitalize{text-transform:capitalize !important}.sd-text-wrap{white-space:normal !important}.sd-text-nowrap{white-space:nowrap !important}.sd-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sd-fs-1,.sd-fs-1>p{font-size:calc(1.375rem + 1.5vw) !important;line-height:unset !important}.sd-fs-2,.sd-fs-2>p{font-size:calc(1.325rem + 0.9vw) !important;line-height:unset !important}.sd-fs-3,.sd-fs-3>p{font-size:calc(1.3rem + 0.6vw) !important;line-height:unset !important}.sd-fs-4,.sd-fs-4>p{font-size:calc(1.275rem + 0.3vw) !important;line-height:unset !important}.sd-fs-5,.sd-fs-5>p{font-size:1.25rem !important;line-height:unset !important}.sd-fs-6,.sd-fs-6>p{font-size:1rem !important;line-height:unset !important}.sd-border-0{border:0 solid !important}.sd-border-top-0{border-top:0 solid !important}.sd-border-bottom-0{border-bottom:0 solid !important}.sd-border-right-0{border-right:0 solid !important}.sd-border-left-0{border-left:0 solid !important}.sd-border-1{border:1px solid !important}.sd-border-top-1{border-top:1px solid !important}.sd-border-bottom-1{border-bottom:1px solid !important}.sd-border-right-1{border-right:1px solid !important}.sd-border-left-1{border-left:1px solid !important}.sd-border-2{border:2px solid !important}.sd-border-top-2{border-top:2px solid !important}.sd-border-bottom-2{border-bottom:2px solid !important}.sd-border-right-2{border-right:2px solid !important}.sd-border-left-2{border-left:2px solid !important}.sd-border-3{border:3px solid !important}.sd-border-top-3{border-top:3px solid !important}.sd-border-bottom-3{border-bottom:3px solid !important}.sd-border-right-3{border-right:3px solid !important}.sd-border-left-3{border-left:3px solid !important}.sd-border-4{border:4px solid !important}.sd-border-top-4{border-top:4px solid !important}.sd-border-bottom-4{border-bottom:4px solid !important}.sd-border-right-4{border-right:4px solid !important}.sd-border-left-4{border-left:4px solid !important}.sd-border-5{border:5px solid !important}.sd-border-top-5{border-top:5px solid !important}.sd-border-bottom-5{border-bottom:5px solid !important}.sd-border-right-5{border-right:5px solid !important}.sd-border-left-5{border-left:5px solid !important}.sd-rounded-0{border-radius:0 !important}.sd-rounded-1{border-radius:.2rem !important}.sd-rounded-2{border-radius:.3rem !important}.sd-rounded-3{border-radius:.5rem !important}.sd-rounded-pill{border-radius:50rem !important}.sd-rounded-circle{border-radius:50% !important}.shadow-none{box-shadow:none !important}.sd-shadow-sm{box-shadow:0 .125rem .25rem var(--sd-color-shadow) !important}.sd-shadow-md{box-shadow:0 .5rem 1rem var(--sd-color-shadow) !important}.sd-shadow-lg{box-shadow:0 1rem 3rem var(--sd-color-shadow) !important}@keyframes sd-slide-from-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes sd-slide-from-right{0%{transform:translateX(200%)}100%{transform:translateX(0)}}@keyframes sd-grow100{0%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50{0%{transform:scale(0.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50-rot20{0%{transform:scale(0.5) rotateZ(-20deg);opacity:.5}75%{transform:scale(1) rotateZ(5deg);opacity:1}95%{transform:scale(1) rotateZ(-1deg);opacity:1}100%{transform:scale(1) rotateZ(0);opacity:1}}.sd-animate-slide-from-left{animation:1s ease-out 0s 1 normal none running sd-slide-from-left}.sd-animate-slide-from-right{animation:1s ease-out 0s 1 normal none running sd-slide-from-right}.sd-animate-grow100{animation:1s ease-out 0s 1 normal none running sd-grow100}.sd-animate-grow50{animation:1s ease-out 0s 1 normal none running sd-grow50}.sd-animate-grow50-rot20{animation:1s ease-out 0s 1 normal none running sd-grow50-rot20}.sd-badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.sd-badge:empty{display:none}a.sd-badge{text-decoration:none}.sd-btn .sd-badge{position:relative;top:-1px}.sd-btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;cursor:pointer;display:inline-block;font-weight:400;font-size:1rem;line-height:1.5;padding:.375rem .75rem;text-align:center;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:middle;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.sd-btn:hover{text-decoration:none}@media(prefers-reduced-motion: reduce){.sd-btn{transition:none}}.sd-btn-primary,.sd-btn-outline-primary:hover,.sd-btn-outline-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-primary:hover,.sd-btn-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary-highlight) !important;border-color:var(--sd-color-primary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-primary{color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary,.sd-btn-outline-secondary:hover,.sd-btn-outline-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary:hover,.sd-btn-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary-highlight) !important;border-color:var(--sd-color-secondary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-secondary{color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success,.sd-btn-outline-success:hover,.sd-btn-outline-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success:hover,.sd-btn-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success-highlight) !important;border-color:var(--sd-color-success-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-success{color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info,.sd-btn-outline-info:hover,.sd-btn-outline-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info:hover,.sd-btn-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info-highlight) !important;border-color:var(--sd-color-info-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-info{color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning,.sd-btn-outline-warning:hover,.sd-btn-outline-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning:hover,.sd-btn-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning-highlight) !important;border-color:var(--sd-color-warning-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-warning{color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger,.sd-btn-outline-danger:hover,.sd-btn-outline-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger:hover,.sd-btn-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger-highlight) !important;border-color:var(--sd-color-danger-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-danger{color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light,.sd-btn-outline-light:hover,.sd-btn-outline-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light:hover,.sd-btn-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light-highlight) !important;border-color:var(--sd-color-light-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-light{color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted,.sd-btn-outline-muted:hover,.sd-btn-outline-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted:hover,.sd-btn-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted-highlight) !important;border-color:var(--sd-color-muted-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-muted{color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark,.sd-btn-outline-dark:hover,.sd-btn-outline-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark:hover,.sd-btn-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark-highlight) !important;border-color:var(--sd-color-dark-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-dark{color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black,.sd-btn-outline-black:hover,.sd-btn-outline-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black:hover,.sd-btn-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black-highlight) !important;border-color:var(--sd-color-black-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-black{color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white,.sd-btn-outline-white:hover,.sd-btn-outline-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white:hover,.sd-btn-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white-highlight) !important;border-color:var(--sd-color-white-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-white{color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.sd-hide-link-text{font-size:0}.sd-octicon,.sd-material-icon{display:inline-block;fill:currentColor;vertical-align:middle}.sd-avatar-xs{border-radius:50%;object-fit:cover;object-position:center;width:1rem;height:1rem}.sd-avatar-sm{border-radius:50%;object-fit:cover;object-position:center;width:3rem;height:3rem}.sd-avatar-md{border-radius:50%;object-fit:cover;object-position:center;width:5rem;height:5rem}.sd-avatar-lg{border-radius:50%;object-fit:cover;object-position:center;width:7rem;height:7rem}.sd-avatar-xl{border-radius:50%;object-fit:cover;object-position:center;width:10rem;height:10rem}.sd-avatar-inherit{border-radius:50%;object-fit:cover;object-position:center;width:inherit;height:inherit}.sd-avatar-initial{border-radius:50%;object-fit:cover;object-position:center;width:initial;height:initial}.sd-card{background-clip:border-box;background-color:var(--sd-color-card-background);border:1px solid var(--sd-color-card-border);border-radius:.25rem;color:var(--sd-color-card-text);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.sd-card>hr{margin-left:0;margin-right:0}.sd-card-hover:hover{border-color:var(--sd-color-card-border-hover);transform:scale(1.01)}.sd-card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.sd-card-title{margin-bottom:.5rem}.sd-card-subtitle{margin-top:-0.25rem;margin-bottom:0}.sd-card-text:last-child{margin-bottom:0}.sd-card-link:hover{text-decoration:none}.sd-card-link+.card-link{margin-left:1rem}.sd-card-header{padding:.5rem 1rem;margin-bottom:0;background-color:var(--sd-color-card-header);border-bottom:1px solid var(--sd-color-card-border)}.sd-card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.sd-card-footer{padding:.5rem 1rem;background-color:var(--sd-color-card-footer);border-top:1px solid var(--sd-color-card-border)}.sd-card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.sd-card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.sd-card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.sd-card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom,.sd-card-img-top{width:100%}.sd-card-img,.sd-card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom{border-bottom-left-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.sd-cards-carousel{width:100%;display:flex;flex-wrap:nowrap;-ms-flex-direction:row;flex-direction:row;overflow-x:hidden;scroll-snap-type:x mandatory}.sd-cards-carousel.sd-show-scrollbar{overflow-x:auto}.sd-cards-carousel:hover,.sd-cards-carousel:focus{overflow-x:auto}.sd-cards-carousel>.sd-card{flex-shrink:0;scroll-snap-align:start}.sd-cards-carousel>.sd-card:not(:last-child){margin-right:3px}.sd-card-cols-1>.sd-card{width:90%}.sd-card-cols-2>.sd-card{width:45%}.sd-card-cols-3>.sd-card{width:30%}.sd-card-cols-4>.sd-card{width:22.5%}.sd-card-cols-5>.sd-card{width:18%}.sd-card-cols-6>.sd-card{width:15%}.sd-card-cols-7>.sd-card{width:12.8571428571%}.sd-card-cols-8>.sd-card{width:11.25%}.sd-card-cols-9>.sd-card{width:10%}.sd-card-cols-10>.sd-card{width:9%}.sd-card-cols-11>.sd-card{width:8.1818181818%}.sd-card-cols-12>.sd-card{width:7.5%}.sd-container,.sd-container-fluid,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container-xl{margin-left:auto;margin-right:auto;padding-left:var(--sd-gutter-x, 0.75rem);padding-right:var(--sd-gutter-x, 0.75rem);width:100%}@media(min-width: 576px){.sd-container-sm,.sd-container{max-width:540px}}@media(min-width: 768px){.sd-container-md,.sd-container-sm,.sd-container{max-width:720px}}@media(min-width: 992px){.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:960px}}@media(min-width: 1200px){.sd-container-xl,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:1140px}}.sd-row{--sd-gutter-x: 1.5rem;--sd-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(var(--sd-gutter-y) * -1);margin-right:calc(var(--sd-gutter-x) * -0.5);margin-left:calc(var(--sd-gutter-x) * -0.5)}.sd-row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--sd-gutter-x) * 0.5);padding-left:calc(var(--sd-gutter-x) * 0.5);margin-top:var(--sd-gutter-y)}.sd-col{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-auto>*{flex:0 0 auto;width:auto}.sd-row-cols-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}@media(min-width: 576px){.sd-col-sm{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-sm-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-sm-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-sm-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-sm-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-sm-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-sm-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-sm-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-sm-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-sm-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-sm-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-sm-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-sm-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-sm-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 768px){.sd-col-md{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-md-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-md-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-md-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-md-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-md-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-md-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-md-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-md-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-md-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-md-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-md-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-md-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-md-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 992px){.sd-col-lg{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-lg-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-lg-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-lg-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-lg-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-lg-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-lg-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-lg-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-lg-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-lg-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-lg-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-lg-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-lg-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-lg-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 1200px){.sd-col-xl{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-xl-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-xl-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-xl-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-xl-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-xl-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-xl-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-xl-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-xl-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-xl-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-xl-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-xl-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-xl-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-xl-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}.sd-col-auto{flex:0 0 auto;-ms-flex:0 0 auto;width:auto}.sd-col-1{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}.sd-col-2{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-col-3{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-col-4{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-col-5{flex:0 0 auto;-ms-flex:0 0 auto;width:41.6666666667%}.sd-col-6{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-col-7{flex:0 0 auto;-ms-flex:0 0 auto;width:58.3333333333%}.sd-col-8{flex:0 0 auto;-ms-flex:0 0 auto;width:66.6666666667%}.sd-col-9{flex:0 0 auto;-ms-flex:0 0 auto;width:75%}.sd-col-10{flex:0 0 auto;-ms-flex:0 0 auto;width:83.3333333333%}.sd-col-11{flex:0 0 auto;-ms-flex:0 0 auto;width:91.6666666667%}.sd-col-12{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-g-0,.sd-gy-0{--sd-gutter-y: 0}.sd-g-0,.sd-gx-0{--sd-gutter-x: 0}.sd-g-1,.sd-gy-1{--sd-gutter-y: 0.25rem}.sd-g-1,.sd-gx-1{--sd-gutter-x: 0.25rem}.sd-g-2,.sd-gy-2{--sd-gutter-y: 0.5rem}.sd-g-2,.sd-gx-2{--sd-gutter-x: 0.5rem}.sd-g-3,.sd-gy-3{--sd-gutter-y: 1rem}.sd-g-3,.sd-gx-3{--sd-gutter-x: 1rem}.sd-g-4,.sd-gy-4{--sd-gutter-y: 1.5rem}.sd-g-4,.sd-gx-4{--sd-gutter-x: 1.5rem}.sd-g-5,.sd-gy-5{--sd-gutter-y: 3rem}.sd-g-5,.sd-gx-5{--sd-gutter-x: 3rem}@media(min-width: 576px){.sd-col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-sm-0,.sd-gy-sm-0{--sd-gutter-y: 0}.sd-g-sm-0,.sd-gx-sm-0{--sd-gutter-x: 0}.sd-g-sm-1,.sd-gy-sm-1{--sd-gutter-y: 0.25rem}.sd-g-sm-1,.sd-gx-sm-1{--sd-gutter-x: 0.25rem}.sd-g-sm-2,.sd-gy-sm-2{--sd-gutter-y: 0.5rem}.sd-g-sm-2,.sd-gx-sm-2{--sd-gutter-x: 0.5rem}.sd-g-sm-3,.sd-gy-sm-3{--sd-gutter-y: 1rem}.sd-g-sm-3,.sd-gx-sm-3{--sd-gutter-x: 1rem}.sd-g-sm-4,.sd-gy-sm-4{--sd-gutter-y: 1.5rem}.sd-g-sm-4,.sd-gx-sm-4{--sd-gutter-x: 1.5rem}.sd-g-sm-5,.sd-gy-sm-5{--sd-gutter-y: 3rem}.sd-g-sm-5,.sd-gx-sm-5{--sd-gutter-x: 3rem}}@media(min-width: 768px){.sd-col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-md-0,.sd-gy-md-0{--sd-gutter-y: 0}.sd-g-md-0,.sd-gx-md-0{--sd-gutter-x: 0}.sd-g-md-1,.sd-gy-md-1{--sd-gutter-y: 0.25rem}.sd-g-md-1,.sd-gx-md-1{--sd-gutter-x: 0.25rem}.sd-g-md-2,.sd-gy-md-2{--sd-gutter-y: 0.5rem}.sd-g-md-2,.sd-gx-md-2{--sd-gutter-x: 0.5rem}.sd-g-md-3,.sd-gy-md-3{--sd-gutter-y: 1rem}.sd-g-md-3,.sd-gx-md-3{--sd-gutter-x: 1rem}.sd-g-md-4,.sd-gy-md-4{--sd-gutter-y: 1.5rem}.sd-g-md-4,.sd-gx-md-4{--sd-gutter-x: 1.5rem}.sd-g-md-5,.sd-gy-md-5{--sd-gutter-y: 3rem}.sd-g-md-5,.sd-gx-md-5{--sd-gutter-x: 3rem}}@media(min-width: 992px){.sd-col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-lg-0,.sd-gy-lg-0{--sd-gutter-y: 0}.sd-g-lg-0,.sd-gx-lg-0{--sd-gutter-x: 0}.sd-g-lg-1,.sd-gy-lg-1{--sd-gutter-y: 0.25rem}.sd-g-lg-1,.sd-gx-lg-1{--sd-gutter-x: 0.25rem}.sd-g-lg-2,.sd-gy-lg-2{--sd-gutter-y: 0.5rem}.sd-g-lg-2,.sd-gx-lg-2{--sd-gutter-x: 0.5rem}.sd-g-lg-3,.sd-gy-lg-3{--sd-gutter-y: 1rem}.sd-g-lg-3,.sd-gx-lg-3{--sd-gutter-x: 1rem}.sd-g-lg-4,.sd-gy-lg-4{--sd-gutter-y: 1.5rem}.sd-g-lg-4,.sd-gx-lg-4{--sd-gutter-x: 1.5rem}.sd-g-lg-5,.sd-gy-lg-5{--sd-gutter-y: 3rem}.sd-g-lg-5,.sd-gx-lg-5{--sd-gutter-x: 3rem}}@media(min-width: 1200px){.sd-col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-xl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-xl-0,.sd-gy-xl-0{--sd-gutter-y: 0}.sd-g-xl-0,.sd-gx-xl-0{--sd-gutter-x: 0}.sd-g-xl-1,.sd-gy-xl-1{--sd-gutter-y: 0.25rem}.sd-g-xl-1,.sd-gx-xl-1{--sd-gutter-x: 0.25rem}.sd-g-xl-2,.sd-gy-xl-2{--sd-gutter-y: 0.5rem}.sd-g-xl-2,.sd-gx-xl-2{--sd-gutter-x: 0.5rem}.sd-g-xl-3,.sd-gy-xl-3{--sd-gutter-y: 1rem}.sd-g-xl-3,.sd-gx-xl-3{--sd-gutter-x: 1rem}.sd-g-xl-4,.sd-gy-xl-4{--sd-gutter-y: 1.5rem}.sd-g-xl-4,.sd-gx-xl-4{--sd-gutter-x: 1.5rem}.sd-g-xl-5,.sd-gy-xl-5{--sd-gutter-y: 3rem}.sd-g-xl-5,.sd-gx-xl-5{--sd-gutter-x: 3rem}}.sd-flex-row-reverse{flex-direction:row-reverse !important}details.sd-dropdown{position:relative;font-size:var(--sd-fontsize-dropdown)}details.sd-dropdown:hover{cursor:pointer}details.sd-dropdown .sd-summary-content{cursor:default}details.sd-dropdown summary.sd-summary-title{padding:.5em 1em;font-size:var(--sd-fontsize-dropdown-title);font-weight:var(--sd-fontweight-dropdown-title);user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;list-style:none;display:inline-flex;justify-content:space-between}details.sd-dropdown summary.sd-summary-title::-webkit-details-marker{display:none}details.sd-dropdown summary.sd-summary-title:focus{outline:none}details.sd-dropdown summary.sd-summary-title .sd-summary-icon{margin-right:.6em;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-icon svg{opacity:.8}details.sd-dropdown summary.sd-summary-title .sd-summary-text{flex-grow:1;line-height:1.5;padding-right:.5rem}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker{pointer-events:none;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker svg{opacity:.6}details.sd-dropdown summary.sd-summary-title:hover .sd-summary-state-marker svg{opacity:1;transform:scale(1.1)}details.sd-dropdown[open] summary .sd-octicon.no-title{visibility:hidden}details.sd-dropdown .sd-summary-chevron-right{transition:.25s}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-right{transform:rotate(90deg)}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-down{transform:rotate(180deg)}details.sd-dropdown:not([open]).sd-card{border:none}details.sd-dropdown:not([open])>.sd-card-header{border:1px solid var(--sd-color-card-border);border-radius:.25rem}details.sd-dropdown.sd-fade-in[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out;animation:sd-fade-in .5s ease-in-out}details.sd-dropdown.sd-fade-in-slide-down[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out}.sd-col>.sd-dropdown{width:100%}.sd-summary-content>.sd-tab-set:first-child{margin-top:0}@keyframes sd-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes sd-slide-down{0%{transform:translate(0, -10px)}100%{transform:translate(0, 0)}}.sd-tab-set{border-radius:.125rem;display:flex;flex-wrap:wrap;margin:1em 0;position:relative}.sd-tab-set>input{opacity:0;position:absolute}.sd-tab-set>input:checked+label{border-color:var(--sd-color-tabs-underline-active);color:var(--sd-color-tabs-label-active)}.sd-tab-set>input:checked+label+.sd-tab-content{display:block}.sd-tab-set>input:not(:checked)+label:hover{color:var(--sd-color-tabs-label-hover);border-color:var(--sd-color-tabs-underline-hover)}.sd-tab-set>input:focus+label{outline-style:auto}.sd-tab-set>input:not(.focus-visible)+label{outline:none;-webkit-tap-highlight-color:transparent}.sd-tab-set>label{border-bottom:.125rem solid transparent;margin-bottom:0;color:var(--sd-color-tabs-label-inactive);border-color:var(--sd-color-tabs-underline-inactive);cursor:pointer;font-size:var(--sd-fontsize-tabs-label);font-weight:700;padding:1em 1.25em .5em;transition:color 250ms;width:auto;z-index:1}html .sd-tab-set>label:hover{color:var(--sd-color-tabs-label-active)}.sd-col>.sd-tab-set{width:100%}.sd-tab-content{box-shadow:0 -0.0625rem var(--sd-color-tabs-overline),0 .0625rem var(--sd-color-tabs-underline);display:none;order:99;padding-bottom:.75rem;padding-top:.75rem;width:100%}.sd-tab-content>:first-child{margin-top:0 !important}.sd-tab-content>:last-child{margin-bottom:0 !important}.sd-tab-content>.sd-tab-set{margin:0}.sd-sphinx-override,.sd-sphinx-override *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sd-sphinx-override p{margin-top:0}:root{--sd-color-primary: #0071bc;--sd-color-secondary: #6c757d;--sd-color-success: #28a745;--sd-color-info: #17a2b8;--sd-color-warning: #f0b37e;--sd-color-danger: #dc3545;--sd-color-light: #f8f9fa;--sd-color-muted: #6c757d;--sd-color-dark: #212529;--sd-color-black: black;--sd-color-white: white;--sd-color-primary-highlight: #0060a0;--sd-color-secondary-highlight: #5c636a;--sd-color-success-highlight: #228e3b;--sd-color-info-highlight: #148a9c;--sd-color-warning-highlight: #cc986b;--sd-color-danger-highlight: #bb2d3b;--sd-color-light-highlight: #d3d4d5;--sd-color-muted-highlight: #5c636a;--sd-color-dark-highlight: #1c1f23;--sd-color-black-highlight: black;--sd-color-white-highlight: #d9d9d9;--sd-color-primary-bg: rgba(0, 113, 188, 0.2);--sd-color-secondary-bg: rgba(108, 117, 125, 0.2);--sd-color-success-bg: rgba(40, 167, 69, 0.2);--sd-color-info-bg: rgba(23, 162, 184, 0.2);--sd-color-warning-bg: rgba(240, 179, 126, 0.2);--sd-color-danger-bg: rgba(220, 53, 69, 0.2);--sd-color-light-bg: rgba(248, 249, 250, 0.2);--sd-color-muted-bg: rgba(108, 117, 125, 0.2);--sd-color-dark-bg: rgba(33, 37, 41, 0.2);--sd-color-black-bg: rgba(0, 0, 0, 0.2);--sd-color-white-bg: rgba(255, 255, 255, 0.2);--sd-color-primary-text: #fff;--sd-color-secondary-text: #fff;--sd-color-success-text: #fff;--sd-color-info-text: #fff;--sd-color-warning-text: #212529;--sd-color-danger-text: #fff;--sd-color-light-text: #212529;--sd-color-muted-text: #fff;--sd-color-dark-text: #fff;--sd-color-black-text: #fff;--sd-color-white-text: #212529;--sd-color-shadow: rgba(0, 0, 0, 0.15);--sd-color-card-border: rgba(0, 0, 0, 0.125);--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);--sd-color-card-background: transparent;--sd-color-card-text: inherit;--sd-color-card-header: transparent;--sd-color-card-footer: transparent;--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);--sd-color-tabs-underline-inactive: transparent;--sd-color-tabs-overline: rgb(222, 222, 222);--sd-color-tabs-underline: rgb(222, 222, 222);--sd-fontsize-tabs-label: 1rem;--sd-fontsize-dropdown: inherit;--sd-fontsize-dropdown-title: 1rem;--sd-fontweight-dropdown-title: 700} diff --git a/latest/acknowledgements.html b/latest/acknowledgements.html index 6bb347be2..5a0152bcb 100644 --- a/latest/acknowledgements.html +++ b/latest/acknowledgements.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api.html b/latest/api.html index 8d6cb6f3f..48aa91cec 100644 --- a/latest/api.html +++ b/latest/api.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/compas_occ.brep.html b/latest/api/compas_occ.brep.html index c529a453b..0746e614c 100644 --- a/latest/api/compas_occ.brep.html +++ b/latest/api/compas_occ.brep.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/compas_occ.conversions.html b/latest/api/compas_occ.conversions.html index 6a92a661a..faf3a8ab3 100644 --- a/latest/api/compas_occ.conversions.html +++ b/latest/api/compas_occ.conversions.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/compas_occ.geometry.curves.html b/latest/api/compas_occ.geometry.curves.html index 23c85c5f2..1f9da16db 100644 --- a/latest/api/compas_occ.geometry.curves.html +++ b/latest/api/compas_occ.geometry.curves.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/compas_occ.geometry.html b/latest/api/compas_occ.geometry.html index d85736962..583104958 100644 --- a/latest/api/compas_occ.geometry.html +++ b/latest/api/compas_occ.geometry.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/compas_occ.geometry.surfaces.html b/latest/api/compas_occ.geometry.surfaces.html index 0b6d750b6..ed0de90fb 100644 --- a/latest/api/compas_occ.geometry.surfaces.html +++ b/latest/api/compas_occ.geometry.surfaces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.ToString.html b/latest/api/generated/compas_occ.brep.OCCBrep.ToString.html index 2fc462c48..d131122c1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.ToString.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.check.html b/latest/api/generated/compas_occ.brep.OCCBrep.check.html index 7b68700fe..ac1bdd992 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.check.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.check.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.compute_aabb.html b/latest/api/generated/compas_occ.brep.OCCBrep.compute_aabb.html index 28635596e..eb6e1945c 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.compute_aabb.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.compute_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.compute_obb.html b/latest/api/generated/compas_occ.brep.OCCBrep.compute_obb.html index 45984adfe..8c7102124 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.compute_obb.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.compute_obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.contains.html b/latest/api/generated/compas_occ.brep.OCCBrep.contains.html index 26c6a3320..c791406fe 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.contains.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.contains.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.contours.html b/latest/api/generated/compas_occ.brep.OCCBrep.contours.html index f459da034..5e7b03dba 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.contours.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.contours.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.copy.html b/latest/api/generated/compas_occ.brep.OCCBrep.copy.html index 919ec62bb..d9d96f5f8 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.copy.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_edges.html b/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_edges.html index c0c3609a7..64098cca1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_edges.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_edges.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_faces.html b/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_faces.html index 53b467bf4..3b313d908 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_faces.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_faces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_loops.html b/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_loops.html index e5ccde534..4affa8c34 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_loops.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_loops.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_vertices.html b/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_vertices.html index c9889fafe..1177290a6 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_vertices.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.cull_unused_vertices.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.edge_faces.html b/latest/api/generated/compas_occ.brep.OCCBrep.edge_faces.html index c82c84f5b..621fe674c 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.edge_faces.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.edge_faces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.edge_loop.html b/latest/api/generated/compas_occ.brep.OCCBrep.edge_loop.html index a44d8bda8..d8ca63e9f 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.edge_loop.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.edge_loop.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.edge_loops.html b/latest/api/generated/compas_occ.brep.OCCBrep.edge_loops.html index 61a492e2b..9e0060f53 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.edge_loops.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.edge_loops.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.fillet.html b/latest/api/generated/compas_occ.brep.OCCBrep.fillet.html index 3761f542c..9354b7824 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.fillet.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.fillet.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.filleted.html b/latest/api/generated/compas_occ.brep.OCCBrep.filleted.html index 6971daa8d..d4088a8ed 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.filleted.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.filleted.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.fix.html b/latest/api/generated/compas_occ.brep.OCCBrep.fix.html index e3fbd0616..b263a1d9e 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.fix.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.fix.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_difference.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_difference.html index 2a84af693..ff2d46040 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_difference.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_difference.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_intersection.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_intersection.html index 51c9d5789..4ead53e11 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_intersection.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_intersection.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_union.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_union.html index c7375f642..56e6362d0 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_union.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_boolean_union.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_box.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_box.html index 494ab0075..568ee238c 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_box.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_box.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_brepfaces.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_brepfaces.html index 959f8c5c0..823fea5a1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_brepfaces.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_brepfaces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_breps.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_breps.html index 5c43fb92c..d15b4613a 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_breps.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_breps.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_cone.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_cone.html index 105588fdf..83834959d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_cone.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_cone.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_curves.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_curves.html index 45f2870dd..d0f8ebebf 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_curves.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_curves.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_cylinder.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_cylinder.html index f0fabcfd9..e84b393c3 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_cylinder.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_cylinder.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_extrusion.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_extrusion.html index f8650c377..6c351763d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_extrusion.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_extrusion.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_iges.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_iges.html index 36725bf5b..7e482733e 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_iges.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_iges.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_json.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_json.html index 6873ab252..dff58b12f 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_jsonstring.html index 180eb2a48..37907645c 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_loft.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_loft.html index ad6ececba..36c45cf00 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_loft.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_loft.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_mesh.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_mesh.html index 8c4d15531..f042b28c4 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_mesh.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_mesh.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_native.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_native.html index 8ad6ed052..89770be02 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_native.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_native.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_pipe.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_pipe.html index 6bf8d5f41..109635244 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_pipe.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_pipe.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_plane.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_plane.html index 82e3a1b64..9e9694212 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_plane.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_planes.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_planes.html index a7f2d6403..d06ed9fee 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_planes.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_planes.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_polygons.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_polygons.html index 95cd5d72f..f947959f1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_polygons.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_polygons.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_shape.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_shape.html index 50ad11dca..ba4a8dd64 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_shape.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_shape.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_sphere.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_sphere.html index bd1da149a..5471f9a32 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_sphere.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_sphere.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_step.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_step.html index 935a6ca1b..e0f9398b6 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_step.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_surface.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_surface.html index fffa9c617..a4f079f2e 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_surface.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_surface.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_sweep.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_sweep.html index 16ea1acd9..aacf76ef5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_sweep.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_sweep.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.from_torus.html b/latest/api/generated/compas_occ.brep.OCCBrep.from_torus.html index e9856df69..e397ceb87 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.from_torus.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.from_torus.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.heal.html b/latest/api/generated/compas_occ.brep.OCCBrep.heal.html index c388545a7..9ca5d6e9a 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.heal.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.heal.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.html b/latest/api/generated/compas_occ.brep.OCCBrep.html index ddddaa935..ef78372c4 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.make_solid.html b/latest/api/generated/compas_occ.brep.OCCBrep.make_solid.html index 77da50e10..d249648cf 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.make_solid.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.make_solid.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.overlap.html b/latest/api/generated/compas_occ.brep.OCCBrep.overlap.html index e151726f3..461531627 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.overlap.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.overlap.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.rotate.html b/latest/api/generated/compas_occ.brep.OCCBrep.rotate.html index 33a01a545..7b5c54910 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.rotate.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.rotate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.rotated.html b/latest/api/generated/compas_occ.brep.OCCBrep.rotated.html index 2defc940c..eafbd32f3 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.rotated.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.rotated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.scale.html b/latest/api/generated/compas_occ.brep.OCCBrep.scale.html index dea19665a..bd4260a5f 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.scale.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.scale.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.scaled.html b/latest/api/generated/compas_occ.brep.OCCBrep.scaled.html index f12546b73..46393d7cc 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.scaled.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.scaled.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.sew.html b/latest/api/generated/compas_occ.brep.OCCBrep.sew.html index abc4e3ded..3b6726843 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.sew.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.sew.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.sha256.html b/latest/api/generated/compas_occ.brep.OCCBrep.sha256.html index 56ae4edc6..f248980b2 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.sha256.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.simplify.html b/latest/api/generated/compas_occ.brep.OCCBrep.simplify.html index 63ba3df55..79d6407c5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.simplify.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.simplify.html @@ -34,7 +34,7 @@ - + @@ -660,7 +660,7 @@

OCCBrep.simplify

-OCCBrep.simplify(merge_edges=True, merge_faces=True)
+OCCBrep.simplify(merge_edges=True, merge_faces=True, linear=0.001, angular=0.1)

Simplify the shape by merging colinear edges and coplanar faces.

Parameters:
diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.slice.html b/latest/api/generated/compas_occ.brep.OCCBrep.slice.html index 9b9318a45..08ee2857d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.slice.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.slice.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.split.html b/latest/api/generated/compas_occ.brep.OCCBrep.split.html index 7caecc5c3..f3ffec022 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.split.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.split.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_iges.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_iges.html index 12f1aba91..c97807ba7 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_iges.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_iges.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_json.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_json.html index 14a458e7a..57d7fbeca 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_jsonstring.html index 6ac66a667..ed2d720b4 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_meshes.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_meshes.html index 5fe04098c..293d46dab 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_meshes.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_meshes.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_polygons.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_polygons.html index 2a6a099fa..39528c0e2 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_polygons.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_polygons.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_step.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_step.html index d12d537a9..011ee3396 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_step.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_stl.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_stl.html index 36248e951..658f2f2e1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_stl.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_stl.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_tesselation.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_tesselation.html index 79e1d09de..9c225b231 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_tesselation.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_tesselation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.to_viewmesh.html b/latest/api/generated/compas_occ.brep.OCCBrep.to_viewmesh.html index e40605f97..bd1400e10 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.to_viewmesh.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.to_viewmesh.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.transform.html b/latest/api/generated/compas_occ.brep.OCCBrep.transform.html index a20f475f6..853266e99 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.transform.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.transform.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.transformed.html b/latest/api/generated/compas_occ.brep.OCCBrep.transformed.html index 2f44fe1bb..1557091c3 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.transformed.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.transformed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.translate.html b/latest/api/generated/compas_occ.brep.OCCBrep.translate.html index d73698d29..76b9859f6 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.translate.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.translate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.translated.html b/latest/api/generated/compas_occ.brep.OCCBrep.translated.html index ac832563d..082ab37fa 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.translated.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.translated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.trim.html b/latest/api/generated/compas_occ.brep.OCCBrep.trim.html index 95bbf0038..6001a3d4e 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.trim.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.trim.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.trimmed.html b/latest/api/generated/compas_occ.brep.OCCBrep.trimmed.html index 14b8f744d..129645bdf 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.trimmed.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.trimmed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.validate_data.html b/latest/api/generated/compas_occ.brep.OCCBrep.validate_data.html index 49339510d..799f22e6c 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.validate_data.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.vertex_edges.html b/latest/api/generated/compas_occ.brep.OCCBrep.vertex_edges.html index b26bcdee5..6f584ad53 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.vertex_edges.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.vertex_edges.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.vertex_faces.html b/latest/api/generated/compas_occ.brep.OCCBrep.vertex_faces.html index f98d811ca..792ef2791 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.vertex_faces.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.vertex_faces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrep.vertex_neighbors.html b/latest/api/generated/compas_occ.brep.OCCBrep.vertex_neighbors.html index 67418c423..fe2238168 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrep.vertex_neighbors.html +++ b/latest/api/generated/compas_occ.brep.OCCBrep.vertex_neighbors.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.ToString.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.ToString.html index 80051c1c8..b61729827 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.ToString.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.copy.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.copy.html index b6089d6c9..b34707ee1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.copy.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_circle.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_circle.html index 928f57401..c6ea60ea8 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_circle.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_circle.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_curve.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_curve.html index 898207740..cd9946fb0 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_curve.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_ellipse.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_ellipse.html index b63343d67..b47df3480 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_ellipse.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_ellipse.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_json.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_json.html index 0949439d7..90627da04 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_jsonstring.html index 850373a3c..3b24ff72d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_line.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_line.html index 4e6211fd5..cc6043f40 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_line.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_point_point.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_point_point.html index 2aedc9dbf..3e3048e14 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_point_point.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_point_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_points.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_points.html index 002ed4b84..e71d22dd0 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_points.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_points.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_vertex_vertex.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_vertex_vertex.html index 3c0398877..e4476ca66 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_vertex_vertex.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_vertex_vertex.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_vertices.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_vertices.html index c56b8dc03..a528473e5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_vertices.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.from_vertices.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.html index 98b717570..b5d4111be 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.is_equal.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.is_equal.html index 59b69f346..ea3b5f141 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.is_equal.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.is_equal.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.is_same.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.is_same.html index 5598dedf4..c61dce487 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.is_same.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.is_same.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.sha256.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.sha256.html index 5072f1640..f953ea227 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.sha256.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_bezier.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_bezier.html index 2beb843db..d52261d6a 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_bezier.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_bezier.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_bspline.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_bspline.html index f08a86469..c1278d54d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_bspline.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_bspline.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_circle.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_circle.html index e902c66fb..28d165c97 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_circle.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_circle.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_curve.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_curve.html index 2563aae92..b8838cf2e 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_curve.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_ellipse.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_ellipse.html index e5882b384..3f3aa8cc4 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_ellipse.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_ellipse.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_hyperbola.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_hyperbola.html index 98355f23b..48be9e73c 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_hyperbola.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_hyperbola.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_json.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_json.html index 2ddea1835..8ff047975 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_jsonstring.html index ef40c70d6..a5e9eeef3 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_line.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_line.html index 4b3dbb869..b49d8fc0d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_line.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_parabola.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_parabola.html index 6a6ff028e..daf8cd6f5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_parabola.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.to_parabola.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepEdge.validate_data.html b/latest/api/generated/compas_occ.brep.OCCBrepEdge.validate_data.html index 6ba0909df..6c6b898b2 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepEdge.validate_data.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepEdge.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.ToString.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.ToString.html index 54b6e4f57..9dda02746 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.ToString.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.add_loop.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.add_loop.html index d9736fb95..8525a1ec3 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.add_loop.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.add_loop.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.add_loops.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.add_loops.html index c2e21bab0..bfaf60ba3 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.add_loops.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.add_loops.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.adjacent_faces.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.adjacent_faces.html index 0ac6ef62d..3779a32fb 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.adjacent_faces.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.adjacent_faces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.as_brep.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.as_brep.html index 3beaf3ca5..92dfeacca 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.as_brep.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.as_brep.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.copy.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.copy.html index b3361f720..a47603717 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.copy.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.fix.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.fix.html index 7eba354c8..ab8ab2a4d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.fix.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.fix.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_cone.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_cone.html index b4fdbc350..460bb9e4d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_cone.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_cone.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_cylinder.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_cylinder.html index f7fce9b34..4de0206c2 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_cylinder.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_cylinder.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_json.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_json.html index be012527d..ede721217 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_jsonstring.html index 8789788b0..3bffda1bb 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_plane.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_plane.html index 7ba716047..30de328a1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_plane.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_polygon.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_polygon.html index eae862620..62908b2f5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_polygon.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_polygon.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_sphere.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_sphere.html index f0d9231cd..4c039e11a 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_sphere.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_sphere.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_surface.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_surface.html index 5724d15ca..22937d007 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_surface.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_surface.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_torus.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_torus.html index 3d6ff320e..c47819c14 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.from_torus.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.from_torus.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.html index 61942e8de..a7f0e1525 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.is_equal.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.is_equal.html index 29598e145..07015a862 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.is_equal.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.is_equal.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.is_same.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.is_same.html index 0b4882223..2889e8765 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.is_same.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.is_same.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.is_valid.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.is_valid.html index 222f92c9b..80903fb8e 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.is_valid.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.is_valid.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.sha256.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.sha256.html index f161c70e8..d0e8bfabc 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.sha256.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_cone.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_cone.html index 49fb7b1ca..1d74b0b35 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_cone.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_cone.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_cylinder.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_cylinder.html index b81b0ded3..4b49b6c05 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_cylinder.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_cylinder.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_json.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_json.html index 76c393c2e..6e7f9fe90 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_jsonstring.html index 5ab63c687..ff7e5a2a5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_plane.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_plane.html index eea2290c9..20e63b197 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_plane.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_polygon.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_polygon.html index 860cdc757..e5c304256 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_polygon.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_polygon.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_sphere.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_sphere.html index 3a1a4b908..a82a7779b 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_sphere.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_sphere.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_torus.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_torus.html index 03a6b7eb7..f4dfec4c1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.to_torus.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.to_torus.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.try_get_nurbssurface.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.try_get_nurbssurface.html index 2dcf00854..80cd67855 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.try_get_nurbssurface.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.try_get_nurbssurface.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepFace.validate_data.html b/latest/api/generated/compas_occ.brep.OCCBrepFace.validate_data.html index a35d12300..669151a48 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepFace.validate_data.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepFace.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.ToString.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.ToString.html index aece302fa..6758ec72d 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.ToString.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.copy.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.copy.html index 6e3731cd5..74f6dab5f 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.copy.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.fix.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.fix.html index 88f5e83b9..e0349b769 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.fix.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.fix.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_edges.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_edges.html index 862d1c496..9649b2069 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_edges.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_edges.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_json.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_json.html index e004c9cb1..1f15359f4 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_jsonstring.html index c66b2261c..a5608ccdb 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_polygon.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_polygon.html index ab5b590e0..4bea44201 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_polygon.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_polygon.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_polyline.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_polyline.html index 5b133c6fc..aed204eec 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_polyline.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.from_polyline.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.html index 299676421..370f074f8 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.is_equal.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.is_equal.html index 28b999dfb..10cb67628 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.is_equal.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.is_equal.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.is_same.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.is_same.html index 399b2785c..83c27c9d5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.is_same.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.is_same.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.sha256.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.sha256.html index 1c98796ab..56cc084b0 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.sha256.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.to_json.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.to_json.html index 48738956c..7568aaa6b 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.to_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.to_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.to_jsonstring.html index a4393daff..291605d4f 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.to_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepLoop.validate_data.html b/latest/api/generated/compas_occ.brep.OCCBrepLoop.validate_data.html index ffe563256..34fe2e35b 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepLoop.validate_data.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepLoop.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.ToString.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.ToString.html index 78604a52e..4fd12bef5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.ToString.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.copy.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.copy.html index 9d7f1583d..de8656009 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.copy.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_json.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_json.html index 9cfbdc44e..e4a3ef414 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_jsonstring.html index 84c5d98e3..db6e1b0a7 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_point.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_point.html index defdfda66..4b2c5cb4b 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_point.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.from_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.html index 0485ba0cb..ba58458af 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.is_equal.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.is_equal.html index dce26f8d9..ae3214896 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.is_equal.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.is_equal.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.is_same.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.is_same.html index 9679d06c3..939651695 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.is_same.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.is_same.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.sha256.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.sha256.html index 8d2243b56..cf3376ad5 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.sha256.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.to_json.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.to_json.html index 1c31ab1fa..80754f2a1 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.to_json.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.to_jsonstring.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.to_jsonstring.html index 82350afa2..c25cfec5f 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.to_jsonstring.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.brep.OCCBrepVertex.validate_data.html b/latest/api/generated/compas_occ.brep.OCCBrepVertex.validate_data.html index 99843fd98..4459d2728 100644 --- a/latest/api/generated/compas_occ.brep.OCCBrepVertex.validate_data.html +++ b/latest/api/generated/compas_occ.brep.OCCBrepVertex.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.array1_from_floats1.html b/latest/api/generated/compas_occ.conversions.array1_from_floats1.html index ff34a727f..349809bcc 100644 --- a/latest/api/generated/compas_occ.conversions.array1_from_floats1.html +++ b/latest/api/generated/compas_occ.conversions.array1_from_floats1.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.array1_from_integers1.html b/latest/api/generated/compas_occ.conversions.array1_from_integers1.html index 2fb4fbe26..381053fb1 100644 --- a/latest/api/generated/compas_occ.conversions.array1_from_integers1.html +++ b/latest/api/generated/compas_occ.conversions.array1_from_integers1.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.array1_from_points1.html b/latest/api/generated/compas_occ.conversions.array1_from_points1.html index 9f628d4f1..2b78acf43 100644 --- a/latest/api/generated/compas_occ.conversions.array1_from_points1.html +++ b/latest/api/generated/compas_occ.conversions.array1_from_points1.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.array2_from_floats2.html b/latest/api/generated/compas_occ.conversions.array2_from_floats2.html index 692dbc16f..84dd4a7a1 100644 --- a/latest/api/generated/compas_occ.conversions.array2_from_floats2.html +++ b/latest/api/generated/compas_occ.conversions.array2_from_floats2.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.array2_from_points2.html b/latest/api/generated/compas_occ.conversions.array2_from_points2.html index 59f7ceebd..b78e438dc 100644 --- a/latest/api/generated/compas_occ.conversions.array2_from_points2.html +++ b/latest/api/generated/compas_occ.conversions.array2_from_points2.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.ax2_to_compas.html b/latest/api/generated/compas_occ.conversions.ax2_to_compas.html index e9dd6ecb1..97c9de377 100644 --- a/latest/api/generated/compas_occ.conversions.ax2_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.ax2_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.ax3_to_compas.html b/latest/api/generated/compas_occ.conversions.ax3_to_compas.html index d794fa3d9..334e37a44 100644 --- a/latest/api/generated/compas_occ.conversions.ax3_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.ax3_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.axis_to_compas.html b/latest/api/generated/compas_occ.conversions.axis_to_compas.html index 7b275e27b..b5dd987de 100644 --- a/latest/api/generated/compas_occ.conversions.axis_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.axis_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.axis_to_compas_vector.html b/latest/api/generated/compas_occ.conversions.axis_to_compas_vector.html index 20c0b4e04..a5d8a9f32 100644 --- a/latest/api/generated/compas_occ.conversions.axis_to_compas_vector.html +++ b/latest/api/generated/compas_occ.conversions.axis_to_compas_vector.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.axis_to_occ.html b/latest/api/generated/compas_occ.conversions.axis_to_occ.html index e203de983..5de3ebc14 100644 --- a/latest/api/generated/compas_occ.conversions.axis_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.axis_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.bezier_to_compas.html b/latest/api/generated/compas_occ.conversions.bezier_to_compas.html index eb18ee312..629fddb3d 100644 --- a/latest/api/generated/compas_occ.conversions.bezier_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.bezier_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.bspline_to_compas.html b/latest/api/generated/compas_occ.conversions.bspline_to_compas.html index b47f7fcbc..8635c97f7 100644 --- a/latest/api/generated/compas_occ.conversions.bspline_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.bspline_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.circle_to_compas.html b/latest/api/generated/compas_occ.conversions.circle_to_compas.html index dc9cf979c..05e8c3401 100644 --- a/latest/api/generated/compas_occ.conversions.circle_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.circle_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.circle_to_occ.html b/latest/api/generated/compas_occ.conversions.circle_to_occ.html index 081b5b940..5c79fb715 100644 --- a/latest/api/generated/compas_occ.conversions.circle_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.circle_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.compas_mesh_to_occ_shell.html b/latest/api/generated/compas_occ.conversions.compas_mesh_to_occ_shell.html index 783d8a015..3f19125a3 100644 --- a/latest/api/generated/compas_occ.conversions.compas_mesh_to_occ_shell.html +++ b/latest/api/generated/compas_occ.conversions.compas_mesh_to_occ_shell.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.compas_quadmesh_to_occ_shell.html b/latest/api/generated/compas_occ.conversions.compas_quadmesh_to_occ_shell.html index 9730e37af..a43974c5a 100644 --- a/latest/api/generated/compas_occ.conversions.compas_quadmesh_to_occ_shell.html +++ b/latest/api/generated/compas_occ.conversions.compas_quadmesh_to_occ_shell.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.compas_transformation_to_trsf.html b/latest/api/generated/compas_occ.conversions.compas_transformation_to_trsf.html index 0d658228d..8a3fd96bd 100644 --- a/latest/api/generated/compas_occ.conversions.compas_transformation_to_trsf.html +++ b/latest/api/generated/compas_occ.conversions.compas_transformation_to_trsf.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.compas_trimesh_to_occ_shell.html b/latest/api/generated/compas_occ.conversions.compas_trimesh_to_occ_shell.html index 905b3f4c8..88ed866eb 100644 --- a/latest/api/generated/compas_occ.conversions.compas_trimesh_to_occ_shell.html +++ b/latest/api/generated/compas_occ.conversions.compas_trimesh_to_occ_shell.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.cone_to_occ.html b/latest/api/generated/compas_occ.conversions.cone_to_occ.html index 224b3346f..b30c15679 100644 --- a/latest/api/generated/compas_occ.conversions.cone_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.cone_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.cylinder_to_compas.html b/latest/api/generated/compas_occ.conversions.cylinder_to_compas.html index 777386a97..943426014 100644 --- a/latest/api/generated/compas_occ.conversions.cylinder_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.cylinder_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.cylinder_to_occ.html b/latest/api/generated/compas_occ.conversions.cylinder_to_occ.html index 60c285180..8960886e0 100644 --- a/latest/api/generated/compas_occ.conversions.cylinder_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.cylinder_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.direction_to_compas.html b/latest/api/generated/compas_occ.conversions.direction_to_compas.html index 99159ca22..7da6db748 100644 --- a/latest/api/generated/compas_occ.conversions.direction_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.direction_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.direction_to_occ.html b/latest/api/generated/compas_occ.conversions.direction_to_occ.html index bc5ebeed7..ec3ac7e08 100644 --- a/latest/api/generated/compas_occ.conversions.direction_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.direction_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.ellipse_to_compas.html b/latest/api/generated/compas_occ.conversions.ellipse_to_compas.html index e2158c04d..9fca62052 100644 --- a/latest/api/generated/compas_occ.conversions.ellipse_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.ellipse_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.ellipse_to_occ.html b/latest/api/generated/compas_occ.conversions.ellipse_to_occ.html index 2825a62d2..b2fc92dd2 100644 --- a/latest/api/generated/compas_occ.conversions.ellipse_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.ellipse_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.floats2_from_array2.html b/latest/api/generated/compas_occ.conversions.floats2_from_array2.html index 6896b4618..e3874d33e 100644 --- a/latest/api/generated/compas_occ.conversions.floats2_from_array2.html +++ b/latest/api/generated/compas_occ.conversions.floats2_from_array2.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.frame_to_occ_ax2.html b/latest/api/generated/compas_occ.conversions.frame_to_occ_ax2.html index 7964d2d08..8d9ece9e4 100644 --- a/latest/api/generated/compas_occ.conversions.frame_to_occ_ax2.html +++ b/latest/api/generated/compas_occ.conversions.frame_to_occ_ax2.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.frame_to_occ_ax3.html b/latest/api/generated/compas_occ.conversions.frame_to_occ_ax3.html index 9aceb9996..d6ea085ff 100644 --- a/latest/api/generated/compas_occ.conversions.frame_to_occ_ax3.html +++ b/latest/api/generated/compas_occ.conversions.frame_to_occ_ax3.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.harray1_from_points1.html b/latest/api/generated/compas_occ.conversions.harray1_from_points1.html index cf7b1d8cd..8375802e6 100644 --- a/latest/api/generated/compas_occ.conversions.harray1_from_points1.html +++ b/latest/api/generated/compas_occ.conversions.harray1_from_points1.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.hyperbola_to_compas.html b/latest/api/generated/compas_occ.conversions.hyperbola_to_compas.html index ea46e7c4d..eb4d0fd2d 100644 --- a/latest/api/generated/compas_occ.conversions.hyperbola_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.hyperbola_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.line_to_compas.html b/latest/api/generated/compas_occ.conversions.line_to_compas.html index dec1044fb..ff73a732d 100644 --- a/latest/api/generated/compas_occ.conversions.line_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.line_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.line_to_occ.html b/latest/api/generated/compas_occ.conversions.line_to_occ.html index e64f5a104..d40ddaa97 100644 --- a/latest/api/generated/compas_occ.conversions.line_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.line_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.location_to_compas.html b/latest/api/generated/compas_occ.conversions.location_to_compas.html index af2248895..82d8d126e 100644 --- a/latest/api/generated/compas_occ.conversions.location_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.location_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.ngon_to_face.html b/latest/api/generated/compas_occ.conversions.ngon_to_face.html index 7ac3f06dd..a64697605 100644 --- a/latest/api/generated/compas_occ.conversions.ngon_to_face.html +++ b/latest/api/generated/compas_occ.conversions.ngon_to_face.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.parabola_to_compas.html b/latest/api/generated/compas_occ.conversions.parabola_to_compas.html index d0db4cda8..d0a524e5e 100644 --- a/latest/api/generated/compas_occ.conversions.parabola_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.parabola_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.plane_to_compas.html b/latest/api/generated/compas_occ.conversions.plane_to_compas.html index 6a6c0d7cb..801217e8e 100644 --- a/latest/api/generated/compas_occ.conversions.plane_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.plane_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.plane_to_occ.html b/latest/api/generated/compas_occ.conversions.plane_to_occ.html index 2b210ef75..d7e39204b 100644 --- a/latest/api/generated/compas_occ.conversions.plane_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.plane_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.plane_to_occ_ax2.html b/latest/api/generated/compas_occ.conversions.plane_to_occ_ax2.html index e84cf2f23..00fc46ff7 100644 --- a/latest/api/generated/compas_occ.conversions.plane_to_occ_ax2.html +++ b/latest/api/generated/compas_occ.conversions.plane_to_occ_ax2.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.plane_to_occ_ax3.html b/latest/api/generated/compas_occ.conversions.plane_to_occ_ax3.html index 21fad32e2..1c23309a2 100644 --- a/latest/api/generated/compas_occ.conversions.plane_to_occ_ax3.html +++ b/latest/api/generated/compas_occ.conversions.plane_to_occ_ax3.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.point2d_to_compas.html b/latest/api/generated/compas_occ.conversions.point2d_to_compas.html index 32a1cf177..8c0cf03e7 100644 --- a/latest/api/generated/compas_occ.conversions.point2d_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.point2d_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.point_to_compas.html b/latest/api/generated/compas_occ.conversions.point_to_compas.html index 979b2669f..d1126ac82 100644 --- a/latest/api/generated/compas_occ.conversions.point_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.point_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.point_to_occ.html b/latest/api/generated/compas_occ.conversions.point_to_occ.html index 813fac3be..056096c65 100644 --- a/latest/api/generated/compas_occ.conversions.point_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.point_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.points1_from_array1.html b/latest/api/generated/compas_occ.conversions.points1_from_array1.html index a2ba2b578..bcbcdbc12 100644 --- a/latest/api/generated/compas_occ.conversions.points1_from_array1.html +++ b/latest/api/generated/compas_occ.conversions.points1_from_array1.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.points2_from_array2.html b/latest/api/generated/compas_occ.conversions.points2_from_array2.html index 3c30e0d3b..becb47e4a 100644 --- a/latest/api/generated/compas_occ.conversions.points2_from_array2.html +++ b/latest/api/generated/compas_occ.conversions.points2_from_array2.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.quad_to_face.html b/latest/api/generated/compas_occ.conversions.quad_to_face.html index 3a56ef849..0b7014551 100644 --- a/latest/api/generated/compas_occ.conversions.quad_to_face.html +++ b/latest/api/generated/compas_occ.conversions.quad_to_face.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.sphere_to_compas.html b/latest/api/generated/compas_occ.conversions.sphere_to_compas.html index eace4472d..e6fc4b086 100644 --- a/latest/api/generated/compas_occ.conversions.sphere_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.sphere_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.sphere_to_occ.html b/latest/api/generated/compas_occ.conversions.sphere_to_occ.html index eaea85c27..a2de8a64f 100644 --- a/latest/api/generated/compas_occ.conversions.sphere_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.sphere_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.torus_to_occ.html b/latest/api/generated/compas_occ.conversions.torus_to_occ.html index 39c0f63f9..122f4a68a 100644 --- a/latest/api/generated/compas_occ.conversions.torus_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.torus_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.triangle_to_face.html b/latest/api/generated/compas_occ.conversions.triangle_to_face.html index bfc61394f..1da106132 100644 --- a/latest/api/generated/compas_occ.conversions.triangle_to_face.html +++ b/latest/api/generated/compas_occ.conversions.triangle_to_face.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.vector2d_to_compas.html b/latest/api/generated/compas_occ.conversions.vector2d_to_compas.html index 9e4323c1f..3db8edf1c 100644 --- a/latest/api/generated/compas_occ.conversions.vector2d_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.vector2d_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.vector_to_compas.html b/latest/api/generated/compas_occ.conversions.vector_to_compas.html index 78e644134..3c2bd0f11 100644 --- a/latest/api/generated/compas_occ.conversions.vector_to_compas.html +++ b/latest/api/generated/compas_occ.conversions.vector_to_compas.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.conversions.vector_to_occ.html b/latest/api/generated/compas_occ.conversions.vector_to_occ.html index 5cfa996da..d4467ee1e 100644 --- a/latest/api/generated/compas_occ.conversions.vector_to_occ.html +++ b/latest/api/generated/compas_occ.conversions.vector_to_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.ToString.html b/latest/api/generated/compas_occ.geometry.OCCCurve.ToString.html index fd36424bd..b315ea57a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.ToString.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.aabb.html b/latest/api/generated/compas_occ.geometry.OCCCurve.aabb.html index a339e4deb..d60da178a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.closest_parameters_curve.html b/latest/api/generated/compas_occ.geometry.OCCCurve.closest_parameters_curve.html index 9697092e9..5666261b5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.closest_parameters_curve.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.closest_parameters_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.closest_point.html b/latest/api/generated/compas_occ.geometry.OCCCurve.closest_point.html index 11e0c7c45..fac989368 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.closest_point.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.closest_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.closest_points_curve.html b/latest/api/generated/compas_occ.geometry.OCCCurve.closest_points_curve.html index ee37338f8..6cf3dd29e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.closest_points_curve.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.closest_points_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.compute_aabb.html b/latest/api/generated/compas_occ.geometry.OCCCurve.compute_aabb.html index 77fd1a71f..8eb209626 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.compute_aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.compute_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.compute_obb.html b/latest/api/generated/compas_occ.geometry.OCCCurve.compute_obb.html index 3611bcc4d..40fc4a459 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.compute_obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.compute_obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.copy.html b/latest/api/generated/compas_occ.geometry.OCCCurve.copy.html index 5c6c89437..06cdc1ded 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.copy.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve.curvature_at.html index e7eeb770a..016ca017c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.divide.html b/latest/api/generated/compas_occ.geometry.OCCCurve.divide.html index aac68c052..4dc41c62d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.divide.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.divide.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.divide_by_count.html b/latest/api/generated/compas_occ.geometry.OCCCurve.divide_by_count.html index ba74b342c..19d951aa5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.divide_by_count.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.divide_by_count.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.divide_by_length.html b/latest/api/generated/compas_occ.geometry.OCCCurve.divide_by_length.html index eaf649021..0b6ebb747 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.divide_by_length.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.divide_by_length.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.embedded.html b/latest/api/generated/compas_occ.geometry.OCCCurve.embedded.html index 61b4dbcb6..a6f9aec13 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.embedded.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.embedded.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.fair.html b/latest/api/generated/compas_occ.geometry.OCCCurve.fair.html index 83b72fb96..64cb36386 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.fair.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.fair.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.frame_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve.frame_at.html index b6539beac..96d4cc69c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.frame_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.frame_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.from_json.html b/latest/api/generated/compas_occ.geometry.OCCCurve.from_json.html index b3a0e8676..ca0828d29 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.from_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.from_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCCurve.from_jsonstring.html index 622a2d073..4b828b757 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.from_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.from_obj.html b/latest/api/generated/compas_occ.geometry.OCCCurve.from_obj.html index 89b453d69..05fde397d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.from_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.from_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.from_occ.html b/latest/api/generated/compas_occ.geometry.OCCCurve.from_occ.html index 63b849795..6f06acbbd 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.from_occ.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.from_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.from_step.html b/latest/api/generated/compas_occ.geometry.OCCCurve.from_step.html index ac25faa7f..858e8c247 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.from_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.from_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.html b/latest/api/generated/compas_occ.geometry.OCCCurve.html index beeff0c09..2d619a612 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.length.html b/latest/api/generated/compas_occ.geometry.OCCCurve.length.html index a16e65378..41e17556a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.length.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.length.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.normal_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve.normal_at.html index 6507fe884..ab3bb8288 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.normal_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.normal_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.offset.html b/latest/api/generated/compas_occ.geometry.OCCCurve.offset.html index 686d8bd23..b8df7b6c7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.offset.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.offset.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.parameter_at_distance.html b/latest/api/generated/compas_occ.geometry.OCCCurve.parameter_at_distance.html index a22177f51..48a3225cf 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.parameter_at_distance.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.parameter_at_distance.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.point_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve.point_at.html index c6383ae48..4eaf15c7e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.point_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.point_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.projected.html b/latest/api/generated/compas_occ.geometry.OCCCurve.projected.html index 6277921e1..7480929c2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.projected.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.projected.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.reverse.html b/latest/api/generated/compas_occ.geometry.OCCCurve.reverse.html index e9041759b..85e39be97 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.reverse.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.reverse.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.reversed.html b/latest/api/generated/compas_occ.geometry.OCCCurve.reversed.html index f5f06d5db..097b192b7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.reversed.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.reversed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.rotate.html b/latest/api/generated/compas_occ.geometry.OCCCurve.rotate.html index 46a3b9011..c67925405 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.rotate.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.rotate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.rotated.html b/latest/api/generated/compas_occ.geometry.OCCCurve.rotated.html index 1932a2aca..8bff4b24a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.rotated.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.rotated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.scale.html b/latest/api/generated/compas_occ.geometry.OCCCurve.scale.html index fea5e9469..9f6770631 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.scale.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.scale.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.scaled.html b/latest/api/generated/compas_occ.geometry.OCCCurve.scaled.html index 0ad8cc763..56afeead8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.scaled.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.scaled.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.sha256.html b/latest/api/generated/compas_occ.geometry.OCCCurve.sha256.html index 97d7e03f5..6246f9e78 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.sha256.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.smooth.html b/latest/api/generated/compas_occ.geometry.OCCCurve.smooth.html index 4c7c3e89b..d9a30afcd 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.smooth.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.smooth.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.split.html b/latest/api/generated/compas_occ.geometry.OCCCurve.split.html index 9d04df86b..83fc39dab 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.split.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.split.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.tangent_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve.tangent_at.html index 05ea55797..00eca1606 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.tangent_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.tangent_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.to_json.html b/latest/api/generated/compas_occ.geometry.OCCCurve.to_json.html index 0818b04de..8cc9ef61c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.to_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.to_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCCurve.to_jsonstring.html index 3c621542d..6b090c66c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.to_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.to_obj.html b/latest/api/generated/compas_occ.geometry.OCCCurve.to_obj.html index c46b1d29d..3f617a55c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.to_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.to_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.to_points.html b/latest/api/generated/compas_occ.geometry.OCCCurve.to_points.html index 97ddce673..bc15551aa 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.to_points.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.to_points.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.to_polygon.html b/latest/api/generated/compas_occ.geometry.OCCCurve.to_polygon.html index 3795134e3..db3f5e5ce 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.to_polygon.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.to_polygon.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.to_polyline.html b/latest/api/generated/compas_occ.geometry.OCCCurve.to_polyline.html index f27cba5e2..806cb2b69 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.to_polyline.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.to_polyline.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.to_step.html b/latest/api/generated/compas_occ.geometry.OCCCurve.to_step.html index 7266dfb81..bdf2c6799 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.to_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.to_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.transform.html b/latest/api/generated/compas_occ.geometry.OCCCurve.transform.html index d85dbe9cc..a91be85af 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.transform.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.transform.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.transformed.html b/latest/api/generated/compas_occ.geometry.OCCCurve.transformed.html index b812d1b9b..36b763e2d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.transformed.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.transformed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.translate.html b/latest/api/generated/compas_occ.geometry.OCCCurve.translate.html index 312d1098f..b3fd2c3e2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.translate.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.translate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.translated.html b/latest/api/generated/compas_occ.geometry.OCCCurve.translated.html index 412125da4..ff60988b8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.translated.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.translated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.trim.html b/latest/api/generated/compas_occ.geometry.OCCCurve.trim.html index 0d6fd13f5..fa48917a1 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.trim.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.trim.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve.validate_data.html b/latest/api/generated/compas_occ.geometry.OCCCurve.validate_data.html index e6f916e84..bc8e1dac0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve.validate_data.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.ToString.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.ToString.html index eeee47e37..3a65edd8d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.ToString.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.aabb.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.aabb.html index fda68d8c9..fae2263e0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.closest_point.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.closest_point.html index 5fac5b431..dcb1ae684 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.closest_point.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.closest_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.compute_aabb.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.compute_aabb.html index de3dd74c8..592fb86d7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.compute_aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.compute_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.compute_obb.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.compute_obb.html index 2dcaba663..39ba0770a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.compute_obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.compute_obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.copy.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.copy.html index dbef11045..730921923 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.copy.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.curvature_at.html index 35ed5a695..ca21dc21f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.divide_by_count.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.divide_by_count.html index 608ac8d89..73f6194f4 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.divide_by_count.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.divide_by_count.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.divide_by_length.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.divide_by_length.html index 0bc5c4129..31e77fa02 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.divide_by_length.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.divide_by_length.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.fair.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.fair.html index 597bd6290..541d5f0b5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.fair.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.fair.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.frame_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.frame_at.html index 4fa08631b..c00e01a4c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.frame_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.frame_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_json.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_json.html index e75fd31d2..49669c652 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_jsonstring.html index 2fac4296a..010cd6a85 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_obj.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_obj.html index e2b261dbc..b037784e2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_occ.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_occ.html index cc2372b07..935d3635a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_occ.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_step.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_step.html index a020b3815..fa4cd09f0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.from_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.html index ab3cccd70..f0e69f98a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.length.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.length.html index c4e9a4ef4..d44c94652 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.length.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.length.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.normal_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.normal_at.html index a13f81717..3d53fa23b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.normal_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.normal_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.offset.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.offset.html index f5edf1d93..25d2876ce 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.offset.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.offset.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.point_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.point_at.html index 99dba7702..b7f7e6e44 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.point_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.point_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.reverse.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.reverse.html index cc873ce02..00e50c17c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.reverse.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.reverse.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.reversed.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.reversed.html index a95b68ec8..006175204 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.reversed.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.reversed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.rotate.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.rotate.html index 494de4014..f7fac86d8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.rotate.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.rotate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.rotated.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.rotated.html index 4e09bdb6c..572e3c58d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.rotated.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.rotated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.scale.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.scale.html index 6f9090ab4..52fa07e2c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.scale.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.scale.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.scaled.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.scaled.html index 36f5787cf..3f4b183a4 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.scaled.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.scaled.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.sha256.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.sha256.html index 26cd5db8c..a76ce44c8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.sha256.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.smooth.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.smooth.html index 9515f575a..0346fbdcb 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.smooth.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.smooth.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.split.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.split.html index 19f7c657e..7ba364231 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.split.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.split.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.tangent_at.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.tangent_at.html index 3155e8700..61bf53702 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.tangent_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.tangent_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_json.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_json.html index d7cdf388f..bc94ecdf5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_jsonstring.html index d446392fc..12ca611c6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_obj.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_obj.html index c003f46e5..aa8e93e9d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_points.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_points.html index 642b1bfd9..cc333cc14 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_points.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_points.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_polygon.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_polygon.html index 37b7e785c..a2851c302 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_polygon.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_polygon.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_polyline.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_polyline.html index b2d91791a..86452f6e0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_polyline.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_polyline.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_step.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_step.html index 99927abbb..c62326f6c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.to_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.transform.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.transform.html index 60578b74a..ecafae82c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.transform.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.transform.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.transformed.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.transformed.html index 693b4e5b9..4b7b74ff9 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.transformed.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.transformed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.translate.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.translate.html index 5a4e61022..239a2189c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.translate.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.translate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.translated.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.translated.html index 0ea00fd1b..2caa9f0b4 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.translated.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.translated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.trim.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.trim.html index 489eb30b1..04bc41b95 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.trim.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.trim.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCCurve2d.validate_data.html b/latest/api/generated/compas_occ.geometry.OCCCurve2d.validate_data.html index 057bfdca5..a734aee22 100644 --- a/latest/api/generated/compas_occ.geometry.OCCCurve2d.validate_data.html +++ b/latest/api/generated/compas_occ.geometry.OCCCurve2d.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.ToString.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.ToString.html index 8f4220cc9..24e6cb3f3 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.ToString.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.aabb.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.aabb.html index e1929c61e..494f8cd5c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.boundary.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.boundary.html index 141b6a298..d57f93bb4 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.boundary.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.boundary.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.closest_point.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.closest_point.html index c06fe7210..5b099ba7c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.closest_point.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.closest_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute.html index d19df4a1b..0375551f0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_aabb.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_aabb.html index 7bfb8e373..9b171fb61 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_obb.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_obb.html index 05c7e90e7..6c22089d6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.copy.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.copy.html index 4a324ab71..883aa30db 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.copy.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.curvature_at.html index 40864ab71..7b7c04606 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.frame_at.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.frame_at.html index 1e1d40d21..81073e313 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.frame_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.frame_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_face.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_face.html index ec09de5eb..76d0b8087 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_face.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_face.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_json.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_json.html index dab15c578..9883a3dbb 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_jsonstring.html index 7ac8d2cc9..36e2d48ed 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_obj.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_obj.html index 6a36ac227..48912cfe3 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_occ.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_occ.html index fadaf9384..0ef3eb4dc 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_occ.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_plane.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_plane.html index e8f09629a..8b0b311f8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_plane.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_step.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_step.html index 1c7f6f8bc..45a1910f5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.from_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at.html index 48a0a4943..2c64a21d2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.html index 21907b31a..feeb56fbf 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve.html index 2534c4bbf..c2efd91d7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_line.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_line.html index 26d513265..0782aa47f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_line.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane.html index 091e2684b..a4bd65ad7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_u.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_u.html index af75d181e..e71780992 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_u.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_u.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_v.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_v.html index 220b1bd0c..208de95bb 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_v.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_v.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at.html index 68844c9be..d657bdf75 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.normal_at.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.normal_at.html index a44aa0d05..1fbdf0902 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.normal_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.normal_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.obb.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.obb.html index cd6e1f3e4..64202e485 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.point_at.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.point_at.html index 2c62948bd..a632731e2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.point_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.point_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.pointgrid.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.pointgrid.html index 2aa15b383..a8691b470 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.pointgrid.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.pointgrid.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.rotate.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.rotate.html index 3fc723984..99dae7723 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.rotate.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.rotate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.rotated.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.rotated.html index 7587144f8..543d153dd 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.rotated.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.rotated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.scale.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.scale.html index 4ce7cbf8b..171d653b3 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.scale.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.scale.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.scaled.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.scaled.html index d560a693d..d5ca10171 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.scaled.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.scaled.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.sha256.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.sha256.html index 71a2584b9..20151223e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.sha256.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.space_u.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.space_u.html index 98cc0c431..cad1a1d68 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.space_u.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.space_u.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.space_v.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.space_v.html index d04342fec..a865aac2a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.space_v.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.space_v.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_brep.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_brep.html index 4160fbc65..e2bd47093 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_brep.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_brep.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_json.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_json.html index 399d60ec5..cf18ec466 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_jsonstring.html index 7ad2a237e..93f99885c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_mesh.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_mesh.html index 5f0a5939d..56cf61e61 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_mesh.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_mesh.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_polyhedron.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_polyhedron.html index 1d93e6289..4c7185911 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_polyhedron.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_polyhedron.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_quads.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_quads.html index faa7df908..073054f11 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_quads.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_quads.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_step.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_step.html index 29135e359..725eca611 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_tesselation.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_tesselation.html index 518b81f79..69d9637e7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_tesselation.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_tesselation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_triangles.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_triangles.html index 0b0335d8b..c311818ef 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_triangles.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_triangles.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces.html index ef0e5cdde..7febf4fe9 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.transform.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.transform.html index 4674c6a46..c4545daf0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.transform.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.transform.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.transformed.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.transformed.html index b52d1d1af..fd4b5d57e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.transformed.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.transformed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.translate.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.translate.html index 4caa9e5ee..0d1562266 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.translate.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.translate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.translated.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.translated.html index 3a91277fd..54a88611b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.translated.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.translated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.validate_data.html b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.validate_data.html index a4edaa085..f6f838a8f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.validate_data.html +++ b/latest/api/generated/compas_occ.geometry.OCCExtrusionSurface.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.ToString.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.ToString.html index b84a61d53..64da12fd6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.ToString.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.aabb.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.aabb.html index d26faeae6..2f9d70992 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve.html index 7e96cb7a0..1690e3a24 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_point.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_point.html index 58a3c8d1b..6fff24297 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_point.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_points_curve.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_points_curve.html index 09c5d75f8..5db2c1742 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_points_curve.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.closest_points_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.compute_aabb.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.compute_aabb.html index 6433bf63e..4275ddbe4 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.compute_aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.compute_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.compute_obb.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.compute_obb.html index 73ff6050f..bb5158c75 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.compute_obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.compute_obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.copy.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.copy.html index aec328ed1..1300456f6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.copy.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.curvature_at.html index f8127218d..559f4035c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide.html index f1b0fa3a3..2799367b8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_count.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_count.html index b52be9de6..85acb6ae2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_count.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_count.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_length.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_length.html index f82a51857..a2db38563 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_length.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_length.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.elevate_degree.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.elevate_degree.html index b9772bdc9..ad25a7e3b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.elevate_degree.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.elevate_degree.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.embedded.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.embedded.html index 6e51dbd59..75f05ec5f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.embedded.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.embedded.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.fair.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.fair.html index e1469fb9a..527cd045d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.fair.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.fair.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.frame_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.frame_at.html index 01563bf24..aa7a766ee 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.frame_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.frame_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_arc.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_arc.html index 579fe17ce..02f35d931 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_arc.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_arc.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_circle.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_circle.html index e2fd73e1f..e92d4be15 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_circle.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_circle.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_ellipse.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_ellipse.html index d2f3a959a..61a23a19f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_ellipse.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_ellipse.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_interpolation.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_interpolation.html index 5cd01f90f..8a40746cb 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_interpolation.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_interpolation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_json.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_json.html index fe73d530f..3bd9bb286 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_jsonstring.html index 5c9336320..0c5fcba68 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_line.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_line.html index 48e47366b..203dd3c50 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_line.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_native.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_native.html index 107640573..a4064c882 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_native.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_native.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_obj.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_obj.html index 8dc8be141..e9712ee20 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_occ.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_occ.html index c1e211159..6a200e437 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_occ.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_parameters.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_parameters.html index 316499094..8b1e9ec12 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_parameters.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_parameters.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_points.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_points.html index 6622cef7e..17eeebbc8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_points.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_points.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_step.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_step.html index be66bebc7..302a7d9de 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.from_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.html index f97146e6d..b34235331 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.insert_knot.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.insert_knot.html index fc575ffcc..26ec16908 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.insert_knot.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.insert_knot.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.join.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.join.html index c670e7912..2885895fa 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.join.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.join.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.joined.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.joined.html index fd815bb69..630a54554 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.joined.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.joined.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.length.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.length.html index e6e44d176..e6bf08e2a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.length.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.length.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.normal_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.normal_at.html index 4fc13852f..e1ba2486d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.normal_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.normal_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.offset.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.offset.html index 03d7d7d0c..305ec8e2f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.offset.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.offset.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.parameter_at_distance.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.parameter_at_distance.html index 854585d34..9c0731b35 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.parameter_at_distance.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.parameter_at_distance.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.point_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.point_at.html index 6ba2f44de..c729ba7ca 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.point_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.point_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.projected.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.projected.html index c3cf3f91a..6406ea9f5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.projected.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.projected.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reduce_degree.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reduce_degree.html index 6853322d1..6c349ba0d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reduce_degree.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reduce_degree.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.refine_knot.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.refine_knot.html index 708ec4ac3..f832cf908 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.refine_knot.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.refine_knot.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.remove_knot.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.remove_knot.html index 5b83efbbd..59f62ef6a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.remove_knot.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.remove_knot.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reverse.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reverse.html index 9156755bd..9606b98fc 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reverse.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reverse.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reversed.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reversed.html index cc47067e0..dbfb3d4dc 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reversed.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.reversed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.rotate.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.rotate.html index 5a6e65263..f2f822009 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.rotate.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.rotate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.rotated.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.rotated.html index 256501c73..221f9b2be 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.rotated.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.rotated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.scale.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.scale.html index ba3f43604..16a6e0054 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.scale.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.scale.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.scaled.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.scaled.html index ea1f3b8b8..bda8d116a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.scaled.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.scaled.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.segment.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.segment.html index 1ab2e5a85..eb2ad464c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.segment.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.segment.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.segmented.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.segmented.html index 0d9342e0d..c43caccef 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.segmented.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.segmented.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.sha256.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.sha256.html index 073eefc2a..21639e0fc 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.sha256.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.smooth.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.smooth.html index 6df2e43db..7819ac5f2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.smooth.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.smooth.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.split.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.split.html index d9f1da417..ed146357e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.split.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.split.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.tangent_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.tangent_at.html index 6530f0448..893def436 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.tangent_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.tangent_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_json.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_json.html index e707e85bf..69019ca84 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_jsonstring.html index 010974c36..992597e11 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_obj.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_obj.html index 8a461d870..39b81296d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_points.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_points.html index c2211d49f..a3e62382f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_points.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_points.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_polygon.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_polygon.html index c01ac5316..25501cc6b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_polygon.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_polygon.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_polyline.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_polyline.html index ec4f91f6d..e7ee067fc 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_polyline.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_polyline.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_step.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_step.html index 3ae81e721..95f004975 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.to_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.transform.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.transform.html index 707c518a2..3cd121919 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.transform.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.transform.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.transformed.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.transformed.html index d7c6fbcb8..60a35027a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.transformed.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.transformed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.translate.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.translate.html index 269a44aaf..9f2a8046a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.translate.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.translate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.translated.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.translated.html index 7397ac01f..1a72d2b11 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.translated.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.translated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.trim.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.trim.html index d2da3747a..86ecb951a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.trim.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.trim.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.validate_data.html b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.validate_data.html index f937943fe..c8b52d2b6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.validate_data.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsCurve.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.ToString.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.ToString.html index 03ad09185..aa0d54973 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.ToString.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.aabb.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.aabb.html index b0adcf8a8..38cfc5000 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.boundary.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.boundary.html index 1233c3394..c03a8bdd0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.boundary.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.boundary.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.closest_point.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.closest_point.html index cf29cfe56..e768582e8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.closest_point.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.closest_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.compute_aabb.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.compute_aabb.html index b2873eb47..9763e5076 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.compute_aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.compute_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.compute_obb.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.compute_obb.html index f27317e08..f0db331e2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.compute_obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.compute_obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.copy.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.copy.html index 911c74e8f..961dd1773 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.copy.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.curvature_at.html index edba34c96..3106839b2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.frame_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.frame_at.html index e75b4b974..6937a18c5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.frame_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.frame_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_extrusion.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_extrusion.html index 023742cc6..1892faf16 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_extrusion.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_extrusion.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_face.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_face.html index f8e5e4b97..6b5c7e4e5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_face.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_face.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_fill.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_fill.html index 7cafcb14b..6c1a02f14 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_fill.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_fill.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_interpolation.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_interpolation.html index bde589136..fed2492c1 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_interpolation.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_interpolation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_json.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_json.html index 6aa9f468e..b28868d89 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_jsonstring.html index ee5b7e314..2987df90e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_meshgrid.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_meshgrid.html index 3977734d7..5e3840ebf 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_meshgrid.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_meshgrid.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_native.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_native.html index 3eec9ea39..b830cc03c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_native.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_native.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_obj.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_obj.html index 55124ae0d..b143fdbc3 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_occ.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_occ.html index 0048c8a83..701731009 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_occ.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_parameters.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_parameters.html index d454cf3d0..62dfa14f0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_parameters.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_parameters.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_plane.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_plane.html index e45df1834..39daff442 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_plane.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_points.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_points.html index 9ec181bea..124e4eb24 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_points.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_points.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_step.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_step.html index 0528d6a6f..61e39dfc0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.from_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at.html index 82bde8e23..e7216b2a7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.html index 4745f59f9..336eecd52 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_curve.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_curve.html index 5d4ea8604..d8d95e7b2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_curve.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_line.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_line.html index 0c1c16741..b440b0046 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_line.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_plane.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_plane.html index 76b46e9ef..5cc808a06 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_plane.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_u.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_u.html index 7cdd1bf31..285f8272d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_u.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_u.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_v.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_v.html index f76f27d66..55aaec381 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_v.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_v.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.mean_curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.mean_curvature_at.html index 3a09f5573..acdca352d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.mean_curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.mean_curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.normal_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.normal_at.html index 19a61e06e..c1e66f79e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.normal_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.normal_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.obb.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.obb.html index 7f1e4a3e9..a514bd2ce 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.point_at.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.point_at.html index 2ac5fe502..276826aca 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.point_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.point_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.pointgrid.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.pointgrid.html index aa0cd73b2..eae8c689b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.pointgrid.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.pointgrid.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.rotate.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.rotate.html index 07f5bd929..413621d5c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.rotate.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.rotate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.rotated.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.rotated.html index 12475a4c0..297c75a93 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.rotated.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.rotated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.scale.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.scale.html index de17b76c5..1083b8b93 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.scale.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.scale.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.scaled.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.scaled.html index 984f930f6..76c8a637f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.scaled.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.scaled.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.sha256.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.sha256.html index b977ffb94..6abb7d9c1 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.sha256.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.space_u.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.space_u.html index a79cac354..b43393b16 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.space_u.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.space_u.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.space_v.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.space_v.html index 1897047c4..8b63d2f62 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.space_v.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.space_v.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_brep.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_brep.html index 148011e7e..5be322005 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_brep.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_brep.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_json.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_json.html index c3fc8e180..c446ebb7b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_jsonstring.html index 614a921f0..5b03b1a7b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_mesh.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_mesh.html index 8c6265b86..30edfb45c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_mesh.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_mesh.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_polyhedron.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_polyhedron.html index a07205906..803ec01ea 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_polyhedron.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_polyhedron.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_quads.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_quads.html index fa3b3a1a7..a5453f5da 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_quads.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_quads.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_step.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_step.html index 669e4e918..0ccf12d87 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_tesselation.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_tesselation.html index 0b587f2b2..bd163bfa6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_tesselation.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_tesselation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_triangles.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_triangles.html index 9b3c44b1b..b0efcf113 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_triangles.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_triangles.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces.html index 46a8662d1..3c520b5a7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.transform.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.transform.html index c551e72cf..627697600 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.transform.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.transform.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.transformed.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.transformed.html index 9329b379d..2f01cd60f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.transformed.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.transformed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.translate.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.translate.html index 03caf00c6..b12c0b91b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.translate.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.translate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.translated.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.translated.html index 4296860b3..6f64f2e1e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.translated.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.translated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.validate_data.html b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.validate_data.html index b4f810a38..434372084 100644 --- a/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.validate_data.html +++ b/latest/api/generated/compas_occ.geometry.OCCNurbsSurface.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.ToString.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.ToString.html index 16304f670..751cc6532 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.ToString.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.aabb.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.aabb.html index 13109a70b..4d3e596d6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.boundary.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.boundary.html index 31966f805..0ac7bfe9d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.boundary.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.boundary.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.closest_point.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.closest_point.html index 881dced30..82eb06e22 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.closest_point.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.closest_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute.html index 471c47de6..cc07638f2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_aabb.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_aabb.html index 6d1fee455..527872df4 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_obb.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_obb.html index 8750fc945..be26e3af7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.copy.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.copy.html index ffb214804..d1d0976ef 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.copy.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.curvature_at.html index 608d37d78..8f87a500a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.frame_at.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.frame_at.html index 9d3f99ebb..9710af17f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.frame_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.frame_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_face.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_face.html index 1b0e9aa54..6c6c5421f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_face.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_face.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_json.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_json.html index 79dd94037..8f51a1095 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_jsonstring.html index ac41a027c..93f17075c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_obj.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_obj.html index c053b69a7..aa0501316 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_occ.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_occ.html index 81fb29238..3640c430d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_occ.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_plane.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_plane.html index 5ea5d09ae..5603c981f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_plane.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_step.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_step.html index 6b126f837..2cf8f8dc3 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.from_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at.html index 71e343c22..da76f4291 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.html index f114e3915..28d1c6f42 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve.html index 8acb2e8d4..4b7cb5fa2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_line.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_line.html index 8143bda44..922071cf1 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_line.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane.html index eaa14bdd5..00573809c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_u.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_u.html index 21e4636c6..f1cc3256c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_u.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_u.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_v.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_v.html index b41af00e0..b72cbc251 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_v.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_v.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at.html index 7828fd0e9..2847df408 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.normal_at.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.normal_at.html index 5f3803c4e..2b8cd395d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.normal_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.normal_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.obb.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.obb.html index c6fbe7bce..a4a89ad2e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.point_at.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.point_at.html index 514833f4b..5e026528d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.point_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.point_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.pointgrid.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.pointgrid.html index 2d0f06151..da1ffadde 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.pointgrid.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.pointgrid.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.rotate.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.rotate.html index 584b61855..f953663a5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.rotate.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.rotate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.rotated.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.rotated.html index c9222ad16..342a3343b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.rotated.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.rotated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.scale.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.scale.html index 46ff0e2a6..dcaf1b5ca 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.scale.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.scale.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.scaled.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.scaled.html index 8665d84b3..6dce37284 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.scaled.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.scaled.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.sha256.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.sha256.html index adf448057..a9c33b052 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.sha256.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.space_u.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.space_u.html index 10a299a9c..66892d48f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.space_u.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.space_u.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.space_v.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.space_v.html index 73da4549c..dc4d002f6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.space_v.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.space_v.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_brep.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_brep.html index 112f9babf..9356629ab 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_brep.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_brep.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_json.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_json.html index 71a62d994..b778d1a1a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_jsonstring.html index d216564e6..63454031b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_mesh.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_mesh.html index 1efc1e9d8..feb8a7155 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_mesh.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_mesh.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_polyhedron.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_polyhedron.html index bf95b61b2..e86e1d157 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_polyhedron.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_polyhedron.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_quads.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_quads.html index f2fdd0c57..0b841fe40 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_quads.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_quads.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_step.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_step.html index 7ef6e4702..00ed6fdde 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_tesselation.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_tesselation.html index 1ff53606d..dcfd31895 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_tesselation.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_tesselation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_triangles.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_triangles.html index ff01dc787..468f26378 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_triangles.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_triangles.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces.html index f1e3f7bc5..e3ed27335 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.transform.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.transform.html index b5b52c5c2..f9158fd5a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.transform.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.transform.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.transformed.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.transformed.html index 94bd86add..d958c7174 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.transformed.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.transformed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.translate.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.translate.html index 262a95c94..0c8f8e3b6 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.translate.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.translate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.translated.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.translated.html index 4cddf9540..cbe819dd2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.translated.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.translated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.validate_data.html b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.validate_data.html index 228a40e3b..f1ae5314f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.validate_data.html +++ b/latest/api/generated/compas_occ.geometry.OCCRevolutionSurface.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.ToString.html b/latest/api/generated/compas_occ.geometry.OCCSurface.ToString.html index a010568dc..7209e2b6d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.ToString.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.ToString.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.aabb.html b/latest/api/generated/compas_occ.geometry.OCCSurface.aabb.html index 5b8f76c90..77edb254d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.boundary.html b/latest/api/generated/compas_occ.geometry.OCCSurface.boundary.html index ff6121bc8..1caefa76a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.boundary.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.boundary.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.closest_point.html b/latest/api/generated/compas_occ.geometry.OCCSurface.closest_point.html index fd8b2acf9..d52759ebe 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.closest_point.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.closest_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.compute_aabb.html b/latest/api/generated/compas_occ.geometry.OCCSurface.compute_aabb.html index 8f84f6c8e..fda1a7af8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.compute_aabb.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.compute_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.compute_obb.html b/latest/api/generated/compas_occ.geometry.OCCSurface.compute_obb.html index 1d0508e16..fdb68c5b7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.compute_obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.compute_obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.copy.html b/latest/api/generated/compas_occ.geometry.OCCSurface.copy.html index 5c70f8425..c4b4b5f1b 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.copy.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.copy.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCSurface.curvature_at.html index 19c2471e1..fb53bdb9a 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.frame_at.html b/latest/api/generated/compas_occ.geometry.OCCSurface.frame_at.html index 4bb811172..0b4534855 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.frame_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.frame_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.from_face.html b/latest/api/generated/compas_occ.geometry.OCCSurface.from_face.html index 30a56c726..1b93c5bc8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.from_face.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.from_face.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.from_json.html b/latest/api/generated/compas_occ.geometry.OCCSurface.from_json.html index 861af3d35..1b73d1de1 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.from_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.from_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.from_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCSurface.from_jsonstring.html index 767c7c138..bee5958f9 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.from_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.from_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.from_obj.html b/latest/api/generated/compas_occ.geometry.OCCSurface.from_obj.html index f94a58142..3d64cb62c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.from_obj.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.from_obj.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.from_occ.html b/latest/api/generated/compas_occ.geometry.OCCSurface.from_occ.html index 898f73d5f..bcb3c0248 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.from_occ.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.from_occ.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.from_plane.html b/latest/api/generated/compas_occ.geometry.OCCSurface.from_plane.html index 7da90415e..c4bcd2c08 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.from_plane.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.from_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.from_step.html b/latest/api/generated/compas_occ.geometry.OCCSurface.from_step.html index be9eae274..97ed8d4e1 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.from_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.from_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.gaussian_curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCSurface.gaussian_curvature_at.html index c486d0037..bc199041c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.gaussian_curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.gaussian_curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.html b/latest/api/generated/compas_occ.geometry.OCCSurface.html index 327c29c25..3c525a46e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_curve.html b/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_curve.html index 29cc8fc65..2806e668d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_curve.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_line.html b/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_line.html index 8821301b5..337206841 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_line.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_plane.html b/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_plane.html index d7ac528a3..9da60e3b3 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_plane.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.intersections_with_plane.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.isocurve_u.html b/latest/api/generated/compas_occ.geometry.OCCSurface.isocurve_u.html index d3b34688a..b81c473a8 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.isocurve_u.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.isocurve_u.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.isocurve_v.html b/latest/api/generated/compas_occ.geometry.OCCSurface.isocurve_v.html index 710b88545..586b577fe 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.isocurve_v.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.isocurve_v.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.mean_curvature_at.html b/latest/api/generated/compas_occ.geometry.OCCSurface.mean_curvature_at.html index 3d5151264..8013261a0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.mean_curvature_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.mean_curvature_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.normal_at.html b/latest/api/generated/compas_occ.geometry.OCCSurface.normal_at.html index 7261d51d4..b1aba82b7 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.normal_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.normal_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.obb.html b/latest/api/generated/compas_occ.geometry.OCCSurface.obb.html index a6546e292..2df82403c 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.obb.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.obb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.point_at.html b/latest/api/generated/compas_occ.geometry.OCCSurface.point_at.html index 967f714cd..1ebd40e9d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.point_at.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.point_at.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.pointgrid.html b/latest/api/generated/compas_occ.geometry.OCCSurface.pointgrid.html index 47d9693b6..194b62674 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.pointgrid.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.pointgrid.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.rotate.html b/latest/api/generated/compas_occ.geometry.OCCSurface.rotate.html index 61e59f6dc..3a45c9a41 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.rotate.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.rotate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.rotated.html b/latest/api/generated/compas_occ.geometry.OCCSurface.rotated.html index a5b8be34f..bd321e448 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.rotated.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.rotated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.scale.html b/latest/api/generated/compas_occ.geometry.OCCSurface.scale.html index 8ac63e899..5e78728d0 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.scale.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.scale.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.scaled.html b/latest/api/generated/compas_occ.geometry.OCCSurface.scaled.html index 593271008..84c68d6fa 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.scaled.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.scaled.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.sha256.html b/latest/api/generated/compas_occ.geometry.OCCSurface.sha256.html index 84dcba26d..21e341661 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.sha256.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.sha256.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.space_u.html b/latest/api/generated/compas_occ.geometry.OCCSurface.space_u.html index 027b1828d..3244e13d1 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.space_u.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.space_u.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.space_v.html b/latest/api/generated/compas_occ.geometry.OCCSurface.space_v.html index 6661666af..6e425b9bc 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.space_v.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.space_v.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_brep.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_brep.html index e54954df5..f6a3797b5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_brep.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_brep.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_json.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_json.html index aa5025bc5..3824e3f1e 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_json.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_json.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_jsonstring.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_jsonstring.html index 68672cb08..270e993ae 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_jsonstring.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_jsonstring.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_mesh.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_mesh.html index 4c17a66d0..805787f42 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_mesh.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_mesh.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_polyhedron.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_polyhedron.html index f0d30f990..0b6c848af 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_polyhedron.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_polyhedron.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_quads.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_quads.html index 170d15fe8..8c73d0f8f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_quads.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_quads.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_step.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_step.html index faafc2df7..bb2a6b3d5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_step.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_step.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_tesselation.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_tesselation.html index 0a6d9a563..2085c05a2 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_tesselation.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_tesselation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_triangles.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_triangles.html index 8b7b875f1..04427c0bb 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_triangles.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_triangles.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.to_vertices_and_faces.html b/latest/api/generated/compas_occ.geometry.OCCSurface.to_vertices_and_faces.html index 639085dd7..b36c38ef5 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.to_vertices_and_faces.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.to_vertices_and_faces.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.transform.html b/latest/api/generated/compas_occ.geometry.OCCSurface.transform.html index 2e539e625..ef991fb74 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.transform.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.transform.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.transformed.html b/latest/api/generated/compas_occ.geometry.OCCSurface.transformed.html index 3e0420a47..bd2476e8d 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.transformed.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.transformed.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.translate.html b/latest/api/generated/compas_occ.geometry.OCCSurface.translate.html index fc2e2de23..3e9035dd9 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.translate.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.translate.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.translated.html b/latest/api/generated/compas_occ.geometry.OCCSurface.translated.html index 3f495fcef..8374e8731 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.translated.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.translated.html @@ -34,7 +34,7 @@ - + diff --git a/latest/api/generated/compas_occ.geometry.OCCSurface.validate_data.html b/latest/api/generated/compas_occ.geometry.OCCSurface.validate_data.html index 2ae6652a1..6ed2a998f 100644 --- a/latest/api/generated/compas_occ.geometry.OCCSurface.validate_data.html +++ b/latest/api/generated/compas_occ.geometry.OCCSurface.validate_data.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples.html b/latest/examples.html index 2d233cd7f..fb5fec7db 100644 --- a/latest/examples.html +++ b/latest/examples.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_explorer.html b/latest/examples/breps/brep_explorer.html index eb5fe57d7..412059c98 100644 --- a/latest/examples/breps/brep_explorer.html +++ b/latest/examples/breps/brep_explorer.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_fillet.html b/latest/examples/breps/brep_fillet.html index 995d8f753..8e2a8f5dc 100644 --- a/latest/examples/breps/brep_fillet.html +++ b/latest/examples/breps/brep_fillet.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_from_booleans.html b/latest/examples/breps/brep_from_booleans.html index 56de395ff..0d27a763a 100644 --- a/latest/examples/breps/brep_from_booleans.html +++ b/latest/examples/breps/brep_from_booleans.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_from_mesh.html b/latest/examples/breps/brep_from_mesh.html index 69c643935..6067ca420 100644 --- a/latest/examples/breps/brep_from_mesh.html +++ b/latest/examples/breps/brep_from_mesh.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_overlap.html b/latest/examples/breps/brep_overlap.html index a8811c4e6..4c130e952 100644 --- a/latest/examples/breps/brep_overlap.html +++ b/latest/examples/breps/brep_overlap.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_slice.html b/latest/examples/breps/brep_slice.html index c58fb8d68..614206b57 100644 --- a/latest/examples/breps/brep_slice.html +++ b/latest/examples/breps/brep_slice.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_split.html b/latest/examples/breps/brep_split.html index d760838f6..ed8a5f7bb 100644 --- a/latest/examples/breps/brep_split.html +++ b/latest/examples/breps/brep_split.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_trim.html b/latest/examples/breps/brep_trim.html index 228421e1d..8e86ded61 100644 --- a/latest/examples/breps/brep_trim.html +++ b/latest/examples/breps/brep_trim.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_with_hole.html b/latest/examples/breps/brep_with_hole.html index 3ccddb12b..fe3ad8a94 100644 --- a/latest/examples/breps/brep_with_hole.html +++ b/latest/examples/breps/brep_with_hole.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/brep_with_holes.html b/latest/examples/breps/brep_with_holes.html index 1e390bcc1..47a8226da 100644 --- a/latest/examples/breps/brep_with_holes.html +++ b/latest/examples/breps/brep_with_holes.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/breps/index.html b/latest/examples/breps/index.html index 33b379bc4..ebfeeb58a 100644 --- a/latest/examples/breps/index.html +++ b/latest/examples/breps/index.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_closest_parameters_curve.html b/latest/examples/curves/curve_closest_parameters_curve.html index 74914c4ef..2ca33c58d 100644 --- a/latest/examples/curves/curve_closest_parameters_curve.html +++ b/latest/examples/curves/curve_closest_parameters_curve.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_closest_point.html b/latest/examples/curves/curve_closest_point.html index 8cd9076a1..a94383861 100644 --- a/latest/examples/curves/curve_closest_point.html +++ b/latest/examples/curves/curve_closest_point.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_comparison1.html b/latest/examples/curves/curve_comparison1.html index b7e7c2b12..fa15b88f0 100644 --- a/latest/examples/curves/curve_comparison1.html +++ b/latest/examples/curves/curve_comparison1.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_comparison2.html b/latest/examples/curves/curve_comparison2.html index 1c9c72fce..4ff4cabc6 100644 --- a/latest/examples/curves/curve_comparison2.html +++ b/latest/examples/curves/curve_comparison2.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_divide.html b/latest/examples/curves/curve_divide.html index dd5241cb6..a650fd1fc 100644 --- a/latest/examples/curves/curve_divide.html +++ b/latest/examples/curves/curve_divide.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_from_circle.html b/latest/examples/curves/curve_from_circle.html index 3ae1f9050..76f0a828f 100644 --- a/latest/examples/curves/curve_from_circle.html +++ b/latest/examples/curves/curve_from_circle.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_from_interpolation.html b/latest/examples/curves/curve_from_interpolation.html index 8e60d74c6..ea785f9f0 100644 --- a/latest/examples/curves/curve_from_interpolation.html +++ b/latest/examples/curves/curve_from_interpolation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_from_line.html b/latest/examples/curves/curve_from_line.html index 80c16a518..ebf464d97 100644 --- a/latest/examples/curves/curve_from_line.html +++ b/latest/examples/curves/curve_from_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_from_parameters.html b/latest/examples/curves/curve_from_parameters.html index bbee0ba4f..2eb97a6ec 100644 --- a/latest/examples/curves/curve_from_parameters.html +++ b/latest/examples/curves/curve_from_parameters.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_from_points.html b/latest/examples/curves/curve_from_points.html index 2fbc00624..5fee70c80 100644 --- a/latest/examples/curves/curve_from_points.html +++ b/latest/examples/curves/curve_from_points.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_joining.html b/latest/examples/curves/curve_joining.html index 136ed0f63..989d45668 100644 --- a/latest/examples/curves/curve_joining.html +++ b/latest/examples/curves/curve_joining.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/curve_segmentation.html b/latest/examples/curves/curve_segmentation.html index a5655725f..71c261e2a 100644 --- a/latest/examples/curves/curve_segmentation.html +++ b/latest/examples/curves/curve_segmentation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/curves/index.html b/latest/examples/curves/index.html index eac5362b8..2b01f204e 100644 --- a/latest/examples/curves/index.html +++ b/latest/examples/curves/index.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/index.html b/latest/examples/surfaces/index.html index 5a0a1ec7c..6d660358c 100644 --- a/latest/examples/surfaces/index.html +++ b/latest/examples/surfaces/index.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_aabb.html b/latest/examples/surfaces/surface_aabb.html index b0345602a..ede3ad3d2 100644 --- a/latest/examples/surfaces/surface_aabb.html +++ b/latest/examples/surfaces/surface_aabb.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_frames.html b/latest/examples/surfaces/surface_frames.html index d01a44b1b..a2b750e71 100644 --- a/latest/examples/surfaces/surface_frames.html +++ b/latest/examples/surfaces/surface_frames.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_from_extrusion-1.html b/latest/examples/surfaces/surface_from_extrusion-1.html index 9ffb14b1a..64aa6616f 100644 --- a/latest/examples/surfaces/surface_from_extrusion-1.html +++ b/latest/examples/surfaces/surface_from_extrusion-1.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_from_extrusion-2.html b/latest/examples/surfaces/surface_from_extrusion-2.html index 0a9f50012..51213350f 100644 --- a/latest/examples/surfaces/surface_from_extrusion-2.html +++ b/latest/examples/surfaces/surface_from_extrusion-2.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_from_fill.html b/latest/examples/surfaces/surface_from_fill.html index 9989abb93..c899a961c 100644 --- a/latest/examples/surfaces/surface_from_fill.html +++ b/latest/examples/surfaces/surface_from_fill.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_from_meshgrid.html b/latest/examples/surfaces/surface_from_meshgrid.html index 0c2beb832..087251db2 100644 --- a/latest/examples/surfaces/surface_from_meshgrid.html +++ b/latest/examples/surfaces/surface_from_meshgrid.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_from_parameters.html b/latest/examples/surfaces/surface_from_parameters.html index 89176d51a..24a0085ba 100644 --- a/latest/examples/surfaces/surface_from_parameters.html +++ b/latest/examples/surfaces/surface_from_parameters.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_from_points.html b/latest/examples/surfaces/surface_from_points.html index a689ddf38..e9f179fb0 100644 --- a/latest/examples/surfaces/surface_from_points.html +++ b/latest/examples/surfaces/surface_from_points.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_intersections_with_line.html b/latest/examples/surfaces/surface_intersections_with_line.html index 9eea72bc6..8496ff43d 100644 --- a/latest/examples/surfaces/surface_intersections_with_line.html +++ b/latest/examples/surfaces/surface_intersections_with_line.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_isocurves.html b/latest/examples/surfaces/surface_isocurves.html index b6d6c2878..8b1f05e67 100644 --- a/latest/examples/surfaces/surface_isocurves.html +++ b/latest/examples/surfaces/surface_isocurves.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_jsondata.html b/latest/examples/surfaces/surface_jsondata.html index e2240f8a0..4707d9ba4 100644 --- a/latest/examples/surfaces/surface_jsondata.html +++ b/latest/examples/surfaces/surface_jsondata.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_random.html b/latest/examples/surfaces/surface_random.html index 78805b1d3..37471f6fb 100644 --- a/latest/examples/surfaces/surface_random.html +++ b/latest/examples/surfaces/surface_random.html @@ -34,7 +34,7 @@ - + diff --git a/latest/examples/surfaces/surface_spacepoints.html b/latest/examples/surfaces/surface_spacepoints.html index 81a617c0d..0520465b9 100644 --- a/latest/examples/surfaces/surface_spacepoints.html +++ b/latest/examples/surfaces/surface_spacepoints.html @@ -34,7 +34,7 @@ - + diff --git a/latest/genindex.html b/latest/genindex.html index 2cc95468b..ad9531a93 100644 --- a/latest/genindex.html +++ b/latest/genindex.html @@ -33,7 +33,7 @@ - + diff --git a/latest/index.html b/latest/index.html index 9ef1e3ef9..04d1a2fe9 100644 --- a/latest/index.html +++ b/latest/index.html @@ -34,7 +34,7 @@ - + diff --git a/latest/installation.html b/latest/installation.html index b7bf49d13..293f2f9f9 100644 --- a/latest/installation.html +++ b/latest/installation.html @@ -34,7 +34,7 @@ - + diff --git a/latest/license.html b/latest/license.html index 7a076dfa7..a1131806a 100644 --- a/latest/license.html +++ b/latest/license.html @@ -34,7 +34,7 @@ - + diff --git a/latest/search.html b/latest/search.html index ebf553f36..26e5c49e5 100644 --- a/latest/search.html +++ b/latest/search.html @@ -32,7 +32,7 @@ - + diff --git a/latest/searchindex.js b/latest/searchindex.js index 10c10f0c0..3b046e14b 100644 --- a/latest/searchindex.js +++ b/latest/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["acknowledgements", "api", "api/compas_occ.brep", "api/compas_occ.conversions", "api/compas_occ.geometry", "api/compas_occ.geometry.curves", "api/compas_occ.geometry.surfaces", "api/generated/compas_occ.brep.OCCBrep", "api/generated/compas_occ.brep.OCCBrep.ToString", "api/generated/compas_occ.brep.OCCBrep.check", "api/generated/compas_occ.brep.OCCBrep.compute_aabb", "api/generated/compas_occ.brep.OCCBrep.compute_obb", "api/generated/compas_occ.brep.OCCBrep.contains", "api/generated/compas_occ.brep.OCCBrep.contours", "api/generated/compas_occ.brep.OCCBrep.copy", "api/generated/compas_occ.brep.OCCBrep.cull_unused_edges", "api/generated/compas_occ.brep.OCCBrep.cull_unused_faces", "api/generated/compas_occ.brep.OCCBrep.cull_unused_loops", "api/generated/compas_occ.brep.OCCBrep.cull_unused_vertices", "api/generated/compas_occ.brep.OCCBrep.edge_faces", "api/generated/compas_occ.brep.OCCBrep.edge_loop", "api/generated/compas_occ.brep.OCCBrep.edge_loops", "api/generated/compas_occ.brep.OCCBrep.fillet", "api/generated/compas_occ.brep.OCCBrep.filleted", "api/generated/compas_occ.brep.OCCBrep.fix", "api/generated/compas_occ.brep.OCCBrep.from_boolean_difference", "api/generated/compas_occ.brep.OCCBrep.from_boolean_intersection", "api/generated/compas_occ.brep.OCCBrep.from_boolean_union", "api/generated/compas_occ.brep.OCCBrep.from_box", "api/generated/compas_occ.brep.OCCBrep.from_brepfaces", "api/generated/compas_occ.brep.OCCBrep.from_breps", "api/generated/compas_occ.brep.OCCBrep.from_cone", "api/generated/compas_occ.brep.OCCBrep.from_curves", "api/generated/compas_occ.brep.OCCBrep.from_cylinder", "api/generated/compas_occ.brep.OCCBrep.from_extrusion", "api/generated/compas_occ.brep.OCCBrep.from_iges", "api/generated/compas_occ.brep.OCCBrep.from_json", "api/generated/compas_occ.brep.OCCBrep.from_jsonstring", "api/generated/compas_occ.brep.OCCBrep.from_loft", "api/generated/compas_occ.brep.OCCBrep.from_mesh", "api/generated/compas_occ.brep.OCCBrep.from_native", "api/generated/compas_occ.brep.OCCBrep.from_pipe", "api/generated/compas_occ.brep.OCCBrep.from_plane", "api/generated/compas_occ.brep.OCCBrep.from_planes", "api/generated/compas_occ.brep.OCCBrep.from_polygons", "api/generated/compas_occ.brep.OCCBrep.from_shape", "api/generated/compas_occ.brep.OCCBrep.from_sphere", "api/generated/compas_occ.brep.OCCBrep.from_step", "api/generated/compas_occ.brep.OCCBrep.from_surface", "api/generated/compas_occ.brep.OCCBrep.from_sweep", "api/generated/compas_occ.brep.OCCBrep.from_torus", "api/generated/compas_occ.brep.OCCBrep.heal", "api/generated/compas_occ.brep.OCCBrep.make_solid", "api/generated/compas_occ.brep.OCCBrep.overlap", "api/generated/compas_occ.brep.OCCBrep.rotate", "api/generated/compas_occ.brep.OCCBrep.rotated", "api/generated/compas_occ.brep.OCCBrep.scale", "api/generated/compas_occ.brep.OCCBrep.scaled", "api/generated/compas_occ.brep.OCCBrep.sew", "api/generated/compas_occ.brep.OCCBrep.sha256", "api/generated/compas_occ.brep.OCCBrep.simplify", "api/generated/compas_occ.brep.OCCBrep.slice", "api/generated/compas_occ.brep.OCCBrep.split", "api/generated/compas_occ.brep.OCCBrep.to_iges", "api/generated/compas_occ.brep.OCCBrep.to_json", "api/generated/compas_occ.brep.OCCBrep.to_jsonstring", "api/generated/compas_occ.brep.OCCBrep.to_meshes", "api/generated/compas_occ.brep.OCCBrep.to_polygons", "api/generated/compas_occ.brep.OCCBrep.to_step", "api/generated/compas_occ.brep.OCCBrep.to_stl", "api/generated/compas_occ.brep.OCCBrep.to_tesselation", "api/generated/compas_occ.brep.OCCBrep.to_viewmesh", "api/generated/compas_occ.brep.OCCBrep.transform", "api/generated/compas_occ.brep.OCCBrep.transformed", "api/generated/compas_occ.brep.OCCBrep.translate", "api/generated/compas_occ.brep.OCCBrep.translated", "api/generated/compas_occ.brep.OCCBrep.trim", "api/generated/compas_occ.brep.OCCBrep.trimmed", "api/generated/compas_occ.brep.OCCBrep.validate_data", "api/generated/compas_occ.brep.OCCBrep.vertex_edges", "api/generated/compas_occ.brep.OCCBrep.vertex_faces", "api/generated/compas_occ.brep.OCCBrep.vertex_neighbors", "api/generated/compas_occ.brep.OCCBrepEdge", "api/generated/compas_occ.brep.OCCBrepEdge.ToString", "api/generated/compas_occ.brep.OCCBrepEdge.copy", "api/generated/compas_occ.brep.OCCBrepEdge.from_circle", "api/generated/compas_occ.brep.OCCBrepEdge.from_curve", "api/generated/compas_occ.brep.OCCBrepEdge.from_ellipse", "api/generated/compas_occ.brep.OCCBrepEdge.from_json", "api/generated/compas_occ.brep.OCCBrepEdge.from_jsonstring", "api/generated/compas_occ.brep.OCCBrepEdge.from_line", "api/generated/compas_occ.brep.OCCBrepEdge.from_point_point", "api/generated/compas_occ.brep.OCCBrepEdge.from_points", "api/generated/compas_occ.brep.OCCBrepEdge.from_vertex_vertex", "api/generated/compas_occ.brep.OCCBrepEdge.from_vertices", "api/generated/compas_occ.brep.OCCBrepEdge.is_equal", "api/generated/compas_occ.brep.OCCBrepEdge.is_same", "api/generated/compas_occ.brep.OCCBrepEdge.sha256", "api/generated/compas_occ.brep.OCCBrepEdge.to_bezier", "api/generated/compas_occ.brep.OCCBrepEdge.to_bspline", "api/generated/compas_occ.brep.OCCBrepEdge.to_circle", "api/generated/compas_occ.brep.OCCBrepEdge.to_curve", "api/generated/compas_occ.brep.OCCBrepEdge.to_ellipse", "api/generated/compas_occ.brep.OCCBrepEdge.to_hyperbola", "api/generated/compas_occ.brep.OCCBrepEdge.to_json", "api/generated/compas_occ.brep.OCCBrepEdge.to_jsonstring", "api/generated/compas_occ.brep.OCCBrepEdge.to_line", "api/generated/compas_occ.brep.OCCBrepEdge.to_parabola", "api/generated/compas_occ.brep.OCCBrepEdge.validate_data", "api/generated/compas_occ.brep.OCCBrepFace", "api/generated/compas_occ.brep.OCCBrepFace.ToString", "api/generated/compas_occ.brep.OCCBrepFace.add_loop", "api/generated/compas_occ.brep.OCCBrepFace.add_loops", "api/generated/compas_occ.brep.OCCBrepFace.adjacent_faces", "api/generated/compas_occ.brep.OCCBrepFace.as_brep", "api/generated/compas_occ.brep.OCCBrepFace.copy", "api/generated/compas_occ.brep.OCCBrepFace.fix", "api/generated/compas_occ.brep.OCCBrepFace.from_cone", "api/generated/compas_occ.brep.OCCBrepFace.from_cylinder", "api/generated/compas_occ.brep.OCCBrepFace.from_json", "api/generated/compas_occ.brep.OCCBrepFace.from_jsonstring", "api/generated/compas_occ.brep.OCCBrepFace.from_plane", "api/generated/compas_occ.brep.OCCBrepFace.from_polygon", "api/generated/compas_occ.brep.OCCBrepFace.from_sphere", "api/generated/compas_occ.brep.OCCBrepFace.from_surface", "api/generated/compas_occ.brep.OCCBrepFace.from_torus", "api/generated/compas_occ.brep.OCCBrepFace.is_equal", "api/generated/compas_occ.brep.OCCBrepFace.is_same", "api/generated/compas_occ.brep.OCCBrepFace.is_valid", "api/generated/compas_occ.brep.OCCBrepFace.sha256", "api/generated/compas_occ.brep.OCCBrepFace.to_cone", "api/generated/compas_occ.brep.OCCBrepFace.to_cylinder", "api/generated/compas_occ.brep.OCCBrepFace.to_json", "api/generated/compas_occ.brep.OCCBrepFace.to_jsonstring", "api/generated/compas_occ.brep.OCCBrepFace.to_plane", "api/generated/compas_occ.brep.OCCBrepFace.to_polygon", "api/generated/compas_occ.brep.OCCBrepFace.to_sphere", "api/generated/compas_occ.brep.OCCBrepFace.to_torus", "api/generated/compas_occ.brep.OCCBrepFace.try_get_nurbssurface", "api/generated/compas_occ.brep.OCCBrepFace.validate_data", "api/generated/compas_occ.brep.OCCBrepLoop", "api/generated/compas_occ.brep.OCCBrepLoop.ToString", "api/generated/compas_occ.brep.OCCBrepLoop.copy", "api/generated/compas_occ.brep.OCCBrepLoop.fix", "api/generated/compas_occ.brep.OCCBrepLoop.from_edges", "api/generated/compas_occ.brep.OCCBrepLoop.from_json", "api/generated/compas_occ.brep.OCCBrepLoop.from_jsonstring", "api/generated/compas_occ.brep.OCCBrepLoop.from_polygon", "api/generated/compas_occ.brep.OCCBrepLoop.from_polyline", "api/generated/compas_occ.brep.OCCBrepLoop.is_equal", "api/generated/compas_occ.brep.OCCBrepLoop.is_same", "api/generated/compas_occ.brep.OCCBrepLoop.sha256", "api/generated/compas_occ.brep.OCCBrepLoop.to_json", "api/generated/compas_occ.brep.OCCBrepLoop.to_jsonstring", "api/generated/compas_occ.brep.OCCBrepLoop.validate_data", "api/generated/compas_occ.brep.OCCBrepVertex", "api/generated/compas_occ.brep.OCCBrepVertex.ToString", "api/generated/compas_occ.brep.OCCBrepVertex.copy", "api/generated/compas_occ.brep.OCCBrepVertex.from_json", "api/generated/compas_occ.brep.OCCBrepVertex.from_jsonstring", "api/generated/compas_occ.brep.OCCBrepVertex.from_point", "api/generated/compas_occ.brep.OCCBrepVertex.is_equal", "api/generated/compas_occ.brep.OCCBrepVertex.is_same", "api/generated/compas_occ.brep.OCCBrepVertex.sha256", "api/generated/compas_occ.brep.OCCBrepVertex.to_json", "api/generated/compas_occ.brep.OCCBrepVertex.to_jsonstring", "api/generated/compas_occ.brep.OCCBrepVertex.validate_data", "api/generated/compas_occ.conversions.array1_from_floats1", "api/generated/compas_occ.conversions.array1_from_integers1", "api/generated/compas_occ.conversions.array1_from_points1", "api/generated/compas_occ.conversions.array2_from_floats2", "api/generated/compas_occ.conversions.array2_from_points2", "api/generated/compas_occ.conversions.ax2_to_compas", "api/generated/compas_occ.conversions.ax3_to_compas", "api/generated/compas_occ.conversions.axis_to_compas", "api/generated/compas_occ.conversions.axis_to_compas_vector", "api/generated/compas_occ.conversions.axis_to_occ", "api/generated/compas_occ.conversions.bezier_to_compas", "api/generated/compas_occ.conversions.bspline_to_compas", "api/generated/compas_occ.conversions.circle_to_compas", "api/generated/compas_occ.conversions.circle_to_occ", "api/generated/compas_occ.conversions.compas_mesh_to_occ_shell", "api/generated/compas_occ.conversions.compas_quadmesh_to_occ_shell", "api/generated/compas_occ.conversions.compas_transformation_to_trsf", "api/generated/compas_occ.conversions.compas_trimesh_to_occ_shell", "api/generated/compas_occ.conversions.cone_to_occ", "api/generated/compas_occ.conversions.cylinder_to_compas", "api/generated/compas_occ.conversions.cylinder_to_occ", "api/generated/compas_occ.conversions.direction_to_compas", "api/generated/compas_occ.conversions.direction_to_occ", "api/generated/compas_occ.conversions.ellipse_to_compas", "api/generated/compas_occ.conversions.ellipse_to_occ", "api/generated/compas_occ.conversions.floats2_from_array2", "api/generated/compas_occ.conversions.frame_to_occ_ax2", "api/generated/compas_occ.conversions.frame_to_occ_ax3", "api/generated/compas_occ.conversions.harray1_from_points1", "api/generated/compas_occ.conversions.hyperbola_to_compas", "api/generated/compas_occ.conversions.line_to_compas", "api/generated/compas_occ.conversions.line_to_occ", "api/generated/compas_occ.conversions.location_to_compas", "api/generated/compas_occ.conversions.ngon_to_face", "api/generated/compas_occ.conversions.parabola_to_compas", "api/generated/compas_occ.conversions.plane_to_compas", "api/generated/compas_occ.conversions.plane_to_occ", "api/generated/compas_occ.conversions.plane_to_occ_ax2", "api/generated/compas_occ.conversions.plane_to_occ_ax3", "api/generated/compas_occ.conversions.point2d_to_compas", "api/generated/compas_occ.conversions.point_to_compas", "api/generated/compas_occ.conversions.point_to_occ", "api/generated/compas_occ.conversions.points1_from_array1", "api/generated/compas_occ.conversions.points2_from_array2", "api/generated/compas_occ.conversions.quad_to_face", "api/generated/compas_occ.conversions.sphere_to_compas", "api/generated/compas_occ.conversions.sphere_to_occ", "api/generated/compas_occ.conversions.torus_to_occ", "api/generated/compas_occ.conversions.triangle_to_face", "api/generated/compas_occ.conversions.vector2d_to_compas", "api/generated/compas_occ.conversions.vector_to_compas", "api/generated/compas_occ.conversions.vector_to_occ", "api/generated/compas_occ.geometry.OCCCurve", "api/generated/compas_occ.geometry.OCCCurve.ToString", "api/generated/compas_occ.geometry.OCCCurve.aabb", "api/generated/compas_occ.geometry.OCCCurve.closest_parameters_curve", "api/generated/compas_occ.geometry.OCCCurve.closest_point", "api/generated/compas_occ.geometry.OCCCurve.closest_points_curve", "api/generated/compas_occ.geometry.OCCCurve.compute_aabb", "api/generated/compas_occ.geometry.OCCCurve.compute_obb", "api/generated/compas_occ.geometry.OCCCurve.copy", "api/generated/compas_occ.geometry.OCCCurve.curvature_at", "api/generated/compas_occ.geometry.OCCCurve.divide", "api/generated/compas_occ.geometry.OCCCurve.divide_by_count", "api/generated/compas_occ.geometry.OCCCurve.divide_by_length", "api/generated/compas_occ.geometry.OCCCurve.embedded", "api/generated/compas_occ.geometry.OCCCurve.fair", "api/generated/compas_occ.geometry.OCCCurve.frame_at", "api/generated/compas_occ.geometry.OCCCurve.from_json", "api/generated/compas_occ.geometry.OCCCurve.from_jsonstring", "api/generated/compas_occ.geometry.OCCCurve.from_obj", "api/generated/compas_occ.geometry.OCCCurve.from_occ", "api/generated/compas_occ.geometry.OCCCurve.from_step", "api/generated/compas_occ.geometry.OCCCurve.length", "api/generated/compas_occ.geometry.OCCCurve.normal_at", "api/generated/compas_occ.geometry.OCCCurve.offset", "api/generated/compas_occ.geometry.OCCCurve.parameter_at_distance", "api/generated/compas_occ.geometry.OCCCurve.point_at", "api/generated/compas_occ.geometry.OCCCurve.projected", "api/generated/compas_occ.geometry.OCCCurve.reverse", "api/generated/compas_occ.geometry.OCCCurve.reversed", "api/generated/compas_occ.geometry.OCCCurve.rotate", "api/generated/compas_occ.geometry.OCCCurve.rotated", "api/generated/compas_occ.geometry.OCCCurve.scale", "api/generated/compas_occ.geometry.OCCCurve.scaled", "api/generated/compas_occ.geometry.OCCCurve.sha256", "api/generated/compas_occ.geometry.OCCCurve.smooth", "api/generated/compas_occ.geometry.OCCCurve.split", "api/generated/compas_occ.geometry.OCCCurve.tangent_at", "api/generated/compas_occ.geometry.OCCCurve.to_json", "api/generated/compas_occ.geometry.OCCCurve.to_jsonstring", "api/generated/compas_occ.geometry.OCCCurve.to_obj", "api/generated/compas_occ.geometry.OCCCurve.to_points", "api/generated/compas_occ.geometry.OCCCurve.to_polygon", "api/generated/compas_occ.geometry.OCCCurve.to_polyline", "api/generated/compas_occ.geometry.OCCCurve.to_step", "api/generated/compas_occ.geometry.OCCCurve.transform", "api/generated/compas_occ.geometry.OCCCurve.transformed", "api/generated/compas_occ.geometry.OCCCurve.translate", "api/generated/compas_occ.geometry.OCCCurve.translated", "api/generated/compas_occ.geometry.OCCCurve.trim", "api/generated/compas_occ.geometry.OCCCurve.validate_data", "api/generated/compas_occ.geometry.OCCCurve2d", "api/generated/compas_occ.geometry.OCCCurve2d.ToString", "api/generated/compas_occ.geometry.OCCCurve2d.aabb", "api/generated/compas_occ.geometry.OCCCurve2d.closest_point", "api/generated/compas_occ.geometry.OCCCurve2d.compute_aabb", "api/generated/compas_occ.geometry.OCCCurve2d.compute_obb", "api/generated/compas_occ.geometry.OCCCurve2d.copy", "api/generated/compas_occ.geometry.OCCCurve2d.curvature_at", "api/generated/compas_occ.geometry.OCCCurve2d.divide_by_count", "api/generated/compas_occ.geometry.OCCCurve2d.divide_by_length", "api/generated/compas_occ.geometry.OCCCurve2d.fair", "api/generated/compas_occ.geometry.OCCCurve2d.frame_at", "api/generated/compas_occ.geometry.OCCCurve2d.from_json", "api/generated/compas_occ.geometry.OCCCurve2d.from_jsonstring", "api/generated/compas_occ.geometry.OCCCurve2d.from_obj", "api/generated/compas_occ.geometry.OCCCurve2d.from_occ", "api/generated/compas_occ.geometry.OCCCurve2d.from_step", "api/generated/compas_occ.geometry.OCCCurve2d.length", "api/generated/compas_occ.geometry.OCCCurve2d.normal_at", "api/generated/compas_occ.geometry.OCCCurve2d.offset", "api/generated/compas_occ.geometry.OCCCurve2d.point_at", "api/generated/compas_occ.geometry.OCCCurve2d.reverse", "api/generated/compas_occ.geometry.OCCCurve2d.reversed", "api/generated/compas_occ.geometry.OCCCurve2d.rotate", "api/generated/compas_occ.geometry.OCCCurve2d.rotated", "api/generated/compas_occ.geometry.OCCCurve2d.scale", "api/generated/compas_occ.geometry.OCCCurve2d.scaled", "api/generated/compas_occ.geometry.OCCCurve2d.sha256", "api/generated/compas_occ.geometry.OCCCurve2d.smooth", "api/generated/compas_occ.geometry.OCCCurve2d.split", "api/generated/compas_occ.geometry.OCCCurve2d.tangent_at", "api/generated/compas_occ.geometry.OCCCurve2d.to_json", "api/generated/compas_occ.geometry.OCCCurve2d.to_jsonstring", "api/generated/compas_occ.geometry.OCCCurve2d.to_obj", "api/generated/compas_occ.geometry.OCCCurve2d.to_points", "api/generated/compas_occ.geometry.OCCCurve2d.to_polygon", "api/generated/compas_occ.geometry.OCCCurve2d.to_polyline", "api/generated/compas_occ.geometry.OCCCurve2d.to_step", "api/generated/compas_occ.geometry.OCCCurve2d.transform", "api/generated/compas_occ.geometry.OCCCurve2d.transformed", "api/generated/compas_occ.geometry.OCCCurve2d.translate", "api/generated/compas_occ.geometry.OCCCurve2d.translated", "api/generated/compas_occ.geometry.OCCCurve2d.trim", "api/generated/compas_occ.geometry.OCCCurve2d.validate_data", "api/generated/compas_occ.geometry.OCCExtrusionSurface", "api/generated/compas_occ.geometry.OCCExtrusionSurface.ToString", "api/generated/compas_occ.geometry.OCCExtrusionSurface.aabb", "api/generated/compas_occ.geometry.OCCExtrusionSurface.boundary", "api/generated/compas_occ.geometry.OCCExtrusionSurface.closest_point", "api/generated/compas_occ.geometry.OCCExtrusionSurface.compute", "api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_aabb", "api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_obb", "api/generated/compas_occ.geometry.OCCExtrusionSurface.copy", "api/generated/compas_occ.geometry.OCCExtrusionSurface.curvature_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.frame_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_face", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_json", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_jsonstring", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_obj", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_occ", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_plane", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_step", "api/generated/compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve", "api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_line", "api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane", "api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_u", "api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_v", "api/generated/compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.normal_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.obb", "api/generated/compas_occ.geometry.OCCExtrusionSurface.point_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.pointgrid", "api/generated/compas_occ.geometry.OCCExtrusionSurface.rotate", "api/generated/compas_occ.geometry.OCCExtrusionSurface.rotated", "api/generated/compas_occ.geometry.OCCExtrusionSurface.scale", "api/generated/compas_occ.geometry.OCCExtrusionSurface.scaled", "api/generated/compas_occ.geometry.OCCExtrusionSurface.sha256", "api/generated/compas_occ.geometry.OCCExtrusionSurface.space_u", "api/generated/compas_occ.geometry.OCCExtrusionSurface.space_v", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_brep", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_json", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_jsonstring", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_mesh", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_polyhedron", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_quads", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_step", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_tesselation", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_triangles", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces", "api/generated/compas_occ.geometry.OCCExtrusionSurface.transform", "api/generated/compas_occ.geometry.OCCExtrusionSurface.transformed", "api/generated/compas_occ.geometry.OCCExtrusionSurface.translate", "api/generated/compas_occ.geometry.OCCExtrusionSurface.translated", "api/generated/compas_occ.geometry.OCCExtrusionSurface.validate_data", "api/generated/compas_occ.geometry.OCCNurbsCurve", "api/generated/compas_occ.geometry.OCCNurbsCurve.ToString", "api/generated/compas_occ.geometry.OCCNurbsCurve.aabb", "api/generated/compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve", "api/generated/compas_occ.geometry.OCCNurbsCurve.closest_point", "api/generated/compas_occ.geometry.OCCNurbsCurve.closest_points_curve", "api/generated/compas_occ.geometry.OCCNurbsCurve.compute_aabb", "api/generated/compas_occ.geometry.OCCNurbsCurve.compute_obb", "api/generated/compas_occ.geometry.OCCNurbsCurve.copy", "api/generated/compas_occ.geometry.OCCNurbsCurve.curvature_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.divide", "api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_count", "api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_length", "api/generated/compas_occ.geometry.OCCNurbsCurve.elevate_degree", "api/generated/compas_occ.geometry.OCCNurbsCurve.embedded", "api/generated/compas_occ.geometry.OCCNurbsCurve.fair", "api/generated/compas_occ.geometry.OCCNurbsCurve.frame_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_arc", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_circle", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_ellipse", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_interpolation", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_json", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_jsonstring", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_line", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_native", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_obj", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_occ", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_parameters", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_points", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_step", "api/generated/compas_occ.geometry.OCCNurbsCurve.insert_knot", "api/generated/compas_occ.geometry.OCCNurbsCurve.join", "api/generated/compas_occ.geometry.OCCNurbsCurve.joined", "api/generated/compas_occ.geometry.OCCNurbsCurve.length", "api/generated/compas_occ.geometry.OCCNurbsCurve.normal_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.offset", "api/generated/compas_occ.geometry.OCCNurbsCurve.parameter_at_distance", "api/generated/compas_occ.geometry.OCCNurbsCurve.point_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.projected", "api/generated/compas_occ.geometry.OCCNurbsCurve.reduce_degree", "api/generated/compas_occ.geometry.OCCNurbsCurve.refine_knot", "api/generated/compas_occ.geometry.OCCNurbsCurve.remove_knot", "api/generated/compas_occ.geometry.OCCNurbsCurve.reverse", "api/generated/compas_occ.geometry.OCCNurbsCurve.reversed", "api/generated/compas_occ.geometry.OCCNurbsCurve.rotate", "api/generated/compas_occ.geometry.OCCNurbsCurve.rotated", "api/generated/compas_occ.geometry.OCCNurbsCurve.scale", "api/generated/compas_occ.geometry.OCCNurbsCurve.scaled", "api/generated/compas_occ.geometry.OCCNurbsCurve.segment", "api/generated/compas_occ.geometry.OCCNurbsCurve.segmented", "api/generated/compas_occ.geometry.OCCNurbsCurve.sha256", "api/generated/compas_occ.geometry.OCCNurbsCurve.smooth", "api/generated/compas_occ.geometry.OCCNurbsCurve.split", "api/generated/compas_occ.geometry.OCCNurbsCurve.tangent_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_json", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_jsonstring", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_obj", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_points", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_polygon", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_polyline", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_step", "api/generated/compas_occ.geometry.OCCNurbsCurve.transform", "api/generated/compas_occ.geometry.OCCNurbsCurve.transformed", "api/generated/compas_occ.geometry.OCCNurbsCurve.translate", "api/generated/compas_occ.geometry.OCCNurbsCurve.translated", "api/generated/compas_occ.geometry.OCCNurbsCurve.trim", "api/generated/compas_occ.geometry.OCCNurbsCurve.validate_data", "api/generated/compas_occ.geometry.OCCNurbsSurface", "api/generated/compas_occ.geometry.OCCNurbsSurface.ToString", "api/generated/compas_occ.geometry.OCCNurbsSurface.aabb", "api/generated/compas_occ.geometry.OCCNurbsSurface.boundary", "api/generated/compas_occ.geometry.OCCNurbsSurface.closest_point", "api/generated/compas_occ.geometry.OCCNurbsSurface.compute_aabb", "api/generated/compas_occ.geometry.OCCNurbsSurface.compute_obb", "api/generated/compas_occ.geometry.OCCNurbsSurface.copy", "api/generated/compas_occ.geometry.OCCNurbsSurface.curvature_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.frame_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_extrusion", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_face", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_fill", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_interpolation", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_json", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_jsonstring", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_meshgrid", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_native", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_obj", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_occ", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_parameters", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_plane", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_points", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_step", "api/generated/compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_curve", "api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_line", "api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_plane", "api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_u", "api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_v", "api/generated/compas_occ.geometry.OCCNurbsSurface.mean_curvature_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.normal_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.obb", "api/generated/compas_occ.geometry.OCCNurbsSurface.point_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.pointgrid", "api/generated/compas_occ.geometry.OCCNurbsSurface.rotate", "api/generated/compas_occ.geometry.OCCNurbsSurface.rotated", "api/generated/compas_occ.geometry.OCCNurbsSurface.scale", "api/generated/compas_occ.geometry.OCCNurbsSurface.scaled", "api/generated/compas_occ.geometry.OCCNurbsSurface.sha256", "api/generated/compas_occ.geometry.OCCNurbsSurface.space_u", "api/generated/compas_occ.geometry.OCCNurbsSurface.space_v", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_brep", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_json", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_jsonstring", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_mesh", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_polyhedron", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_quads", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_step", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_tesselation", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_triangles", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces", "api/generated/compas_occ.geometry.OCCNurbsSurface.transform", "api/generated/compas_occ.geometry.OCCNurbsSurface.transformed", "api/generated/compas_occ.geometry.OCCNurbsSurface.translate", "api/generated/compas_occ.geometry.OCCNurbsSurface.translated", "api/generated/compas_occ.geometry.OCCNurbsSurface.validate_data", "api/generated/compas_occ.geometry.OCCRevolutionSurface", "api/generated/compas_occ.geometry.OCCRevolutionSurface.ToString", "api/generated/compas_occ.geometry.OCCRevolutionSurface.aabb", "api/generated/compas_occ.geometry.OCCRevolutionSurface.boundary", "api/generated/compas_occ.geometry.OCCRevolutionSurface.closest_point", "api/generated/compas_occ.geometry.OCCRevolutionSurface.compute", "api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_aabb", "api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_obb", "api/generated/compas_occ.geometry.OCCRevolutionSurface.copy", "api/generated/compas_occ.geometry.OCCRevolutionSurface.curvature_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.frame_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_face", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_json", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_jsonstring", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_obj", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_occ", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_plane", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_step", "api/generated/compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve", "api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_line", "api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane", "api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_u", "api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_v", "api/generated/compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.normal_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.obb", "api/generated/compas_occ.geometry.OCCRevolutionSurface.point_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.pointgrid", "api/generated/compas_occ.geometry.OCCRevolutionSurface.rotate", "api/generated/compas_occ.geometry.OCCRevolutionSurface.rotated", "api/generated/compas_occ.geometry.OCCRevolutionSurface.scale", "api/generated/compas_occ.geometry.OCCRevolutionSurface.scaled", "api/generated/compas_occ.geometry.OCCRevolutionSurface.sha256", "api/generated/compas_occ.geometry.OCCRevolutionSurface.space_u", "api/generated/compas_occ.geometry.OCCRevolutionSurface.space_v", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_brep", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_json", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_jsonstring", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_mesh", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_polyhedron", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_quads", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_step", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_tesselation", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_triangles", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces", "api/generated/compas_occ.geometry.OCCRevolutionSurface.transform", "api/generated/compas_occ.geometry.OCCRevolutionSurface.transformed", "api/generated/compas_occ.geometry.OCCRevolutionSurface.translate", "api/generated/compas_occ.geometry.OCCRevolutionSurface.translated", "api/generated/compas_occ.geometry.OCCRevolutionSurface.validate_data", "api/generated/compas_occ.geometry.OCCSurface", "api/generated/compas_occ.geometry.OCCSurface.ToString", "api/generated/compas_occ.geometry.OCCSurface.aabb", "api/generated/compas_occ.geometry.OCCSurface.boundary", "api/generated/compas_occ.geometry.OCCSurface.closest_point", "api/generated/compas_occ.geometry.OCCSurface.compute_aabb", "api/generated/compas_occ.geometry.OCCSurface.compute_obb", "api/generated/compas_occ.geometry.OCCSurface.copy", "api/generated/compas_occ.geometry.OCCSurface.curvature_at", "api/generated/compas_occ.geometry.OCCSurface.frame_at", "api/generated/compas_occ.geometry.OCCSurface.from_face", "api/generated/compas_occ.geometry.OCCSurface.from_json", "api/generated/compas_occ.geometry.OCCSurface.from_jsonstring", "api/generated/compas_occ.geometry.OCCSurface.from_obj", "api/generated/compas_occ.geometry.OCCSurface.from_occ", "api/generated/compas_occ.geometry.OCCSurface.from_plane", "api/generated/compas_occ.geometry.OCCSurface.from_step", "api/generated/compas_occ.geometry.OCCSurface.gaussian_curvature_at", "api/generated/compas_occ.geometry.OCCSurface.intersections_with_curve", "api/generated/compas_occ.geometry.OCCSurface.intersections_with_line", "api/generated/compas_occ.geometry.OCCSurface.intersections_with_plane", "api/generated/compas_occ.geometry.OCCSurface.isocurve_u", "api/generated/compas_occ.geometry.OCCSurface.isocurve_v", "api/generated/compas_occ.geometry.OCCSurface.mean_curvature_at", "api/generated/compas_occ.geometry.OCCSurface.normal_at", "api/generated/compas_occ.geometry.OCCSurface.obb", "api/generated/compas_occ.geometry.OCCSurface.point_at", "api/generated/compas_occ.geometry.OCCSurface.pointgrid", "api/generated/compas_occ.geometry.OCCSurface.rotate", "api/generated/compas_occ.geometry.OCCSurface.rotated", "api/generated/compas_occ.geometry.OCCSurface.scale", "api/generated/compas_occ.geometry.OCCSurface.scaled", "api/generated/compas_occ.geometry.OCCSurface.sha256", "api/generated/compas_occ.geometry.OCCSurface.space_u", "api/generated/compas_occ.geometry.OCCSurface.space_v", "api/generated/compas_occ.geometry.OCCSurface.to_brep", "api/generated/compas_occ.geometry.OCCSurface.to_json", "api/generated/compas_occ.geometry.OCCSurface.to_jsonstring", "api/generated/compas_occ.geometry.OCCSurface.to_mesh", "api/generated/compas_occ.geometry.OCCSurface.to_polyhedron", "api/generated/compas_occ.geometry.OCCSurface.to_quads", "api/generated/compas_occ.geometry.OCCSurface.to_step", "api/generated/compas_occ.geometry.OCCSurface.to_tesselation", "api/generated/compas_occ.geometry.OCCSurface.to_triangles", "api/generated/compas_occ.geometry.OCCSurface.to_vertices_and_faces", "api/generated/compas_occ.geometry.OCCSurface.transform", "api/generated/compas_occ.geometry.OCCSurface.transformed", "api/generated/compas_occ.geometry.OCCSurface.translate", "api/generated/compas_occ.geometry.OCCSurface.translated", "api/generated/compas_occ.geometry.OCCSurface.validate_data", "examples", "examples/breps/brep_explorer", "examples/breps/brep_fillet", "examples/breps/brep_from_booleans", "examples/breps/brep_from_mesh", "examples/breps/brep_overlap", "examples/breps/brep_slice", "examples/breps/brep_split", "examples/breps/brep_trim", "examples/breps/brep_with_hole", "examples/breps/brep_with_holes", "examples/breps/index", "examples/curves/curve_closest_parameters_curve", "examples/curves/curve_closest_point", "examples/curves/curve_comparison1", "examples/curves/curve_comparison2", "examples/curves/curve_divide", "examples/curves/curve_from_circle", "examples/curves/curve_from_interpolation", "examples/curves/curve_from_line", "examples/curves/curve_from_parameters", "examples/curves/curve_from_points", "examples/curves/curve_joining", "examples/curves/curve_segmentation", "examples/curves/index", "examples/surfaces/index", "examples/surfaces/surface_aabb", "examples/surfaces/surface_frames", "examples/surfaces/surface_from_extrusion-1", "examples/surfaces/surface_from_extrusion-2", "examples/surfaces/surface_from_fill", "examples/surfaces/surface_from_meshgrid", "examples/surfaces/surface_from_parameters", "examples/surfaces/surface_from_points", "examples/surfaces/surface_intersections_with_line", "examples/surfaces/surface_isocurves", "examples/surfaces/surface_jsondata", "examples/surfaces/surface_random", "examples/surfaces/surface_spacepoints", "index", "installation", "license", "tutorial"], "filenames": ["acknowledgements.rst", "api.rst", "api\\compas_occ.brep.rst", "api\\compas_occ.conversions.rst", "api\\compas_occ.geometry.rst", "api\\compas_occ.geometry.curves.rst", "api\\compas_occ.geometry.surfaces.rst", "api\\generated\\compas_occ.brep.OCCBrep.rst", "api\\generated\\compas_occ.brep.OCCBrep.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrep.check.rst", "api\\generated\\compas_occ.brep.OCCBrep.compute_aabb.rst", "api\\generated\\compas_occ.brep.OCCBrep.compute_obb.rst", "api\\generated\\compas_occ.brep.OCCBrep.contains.rst", "api\\generated\\compas_occ.brep.OCCBrep.contours.rst", "api\\generated\\compas_occ.brep.OCCBrep.copy.rst", "api\\generated\\compas_occ.brep.OCCBrep.cull_unused_edges.rst", "api\\generated\\compas_occ.brep.OCCBrep.cull_unused_faces.rst", "api\\generated\\compas_occ.brep.OCCBrep.cull_unused_loops.rst", "api\\generated\\compas_occ.brep.OCCBrep.cull_unused_vertices.rst", "api\\generated\\compas_occ.brep.OCCBrep.edge_faces.rst", "api\\generated\\compas_occ.brep.OCCBrep.edge_loop.rst", "api\\generated\\compas_occ.brep.OCCBrep.edge_loops.rst", "api\\generated\\compas_occ.brep.OCCBrep.fillet.rst", "api\\generated\\compas_occ.brep.OCCBrep.filleted.rst", "api\\generated\\compas_occ.brep.OCCBrep.fix.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_boolean_difference.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_boolean_intersection.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_boolean_union.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_box.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_brepfaces.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_breps.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_cone.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_curves.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_cylinder.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_extrusion.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_iges.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_loft.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_mesh.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_native.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_pipe.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_plane.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_planes.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_polygons.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_shape.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_sphere.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_step.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_surface.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_sweep.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_torus.rst", "api\\generated\\compas_occ.brep.OCCBrep.heal.rst", "api\\generated\\compas_occ.brep.OCCBrep.make_solid.rst", "api\\generated\\compas_occ.brep.OCCBrep.overlap.rst", "api\\generated\\compas_occ.brep.OCCBrep.rotate.rst", "api\\generated\\compas_occ.brep.OCCBrep.rotated.rst", "api\\generated\\compas_occ.brep.OCCBrep.scale.rst", "api\\generated\\compas_occ.brep.OCCBrep.scaled.rst", "api\\generated\\compas_occ.brep.OCCBrep.sew.rst", "api\\generated\\compas_occ.brep.OCCBrep.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrep.simplify.rst", "api\\generated\\compas_occ.brep.OCCBrep.slice.rst", "api\\generated\\compas_occ.brep.OCCBrep.split.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_iges.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_meshes.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_polygons.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_step.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_stl.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_tesselation.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_viewmesh.rst", "api\\generated\\compas_occ.brep.OCCBrep.transform.rst", "api\\generated\\compas_occ.brep.OCCBrep.transformed.rst", "api\\generated\\compas_occ.brep.OCCBrep.translate.rst", "api\\generated\\compas_occ.brep.OCCBrep.translated.rst", "api\\generated\\compas_occ.brep.OCCBrep.trim.rst", "api\\generated\\compas_occ.brep.OCCBrep.trimmed.rst", "api\\generated\\compas_occ.brep.OCCBrep.validate_data.rst", "api\\generated\\compas_occ.brep.OCCBrep.vertex_edges.rst", "api\\generated\\compas_occ.brep.OCCBrep.vertex_faces.rst", "api\\generated\\compas_occ.brep.OCCBrep.vertex_neighbors.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.copy.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_circle.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_curve.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_ellipse.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_line.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_point_point.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_points.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_vertex_vertex.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_vertices.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.is_equal.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.is_same.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_bezier.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_bspline.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_circle.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_curve.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_ellipse.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_hyperbola.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_line.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_parabola.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.validate_data.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.add_loop.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.add_loops.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.adjacent_faces.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.as_brep.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.copy.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.fix.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_cone.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_cylinder.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_plane.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_polygon.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_sphere.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_surface.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_torus.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.is_equal.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.is_same.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.is_valid.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_cone.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_cylinder.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_plane.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_polygon.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_sphere.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_torus.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.try_get_nurbssurface.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.validate_data.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.copy.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.fix.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_edges.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_polygon.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_polyline.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.is_equal.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.is_same.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.validate_data.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.copy.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.from_point.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.is_equal.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.is_same.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.validate_data.rst", "api\\generated\\compas_occ.conversions.array1_from_floats1.rst", "api\\generated\\compas_occ.conversions.array1_from_integers1.rst", "api\\generated\\compas_occ.conversions.array1_from_points1.rst", "api\\generated\\compas_occ.conversions.array2_from_floats2.rst", "api\\generated\\compas_occ.conversions.array2_from_points2.rst", "api\\generated\\compas_occ.conversions.ax2_to_compas.rst", "api\\generated\\compas_occ.conversions.ax3_to_compas.rst", "api\\generated\\compas_occ.conversions.axis_to_compas.rst", "api\\generated\\compas_occ.conversions.axis_to_compas_vector.rst", "api\\generated\\compas_occ.conversions.axis_to_occ.rst", "api\\generated\\compas_occ.conversions.bezier_to_compas.rst", "api\\generated\\compas_occ.conversions.bspline_to_compas.rst", "api\\generated\\compas_occ.conversions.circle_to_compas.rst", "api\\generated\\compas_occ.conversions.circle_to_occ.rst", "api\\generated\\compas_occ.conversions.compas_mesh_to_occ_shell.rst", "api\\generated\\compas_occ.conversions.compas_quadmesh_to_occ_shell.rst", "api\\generated\\compas_occ.conversions.compas_transformation_to_trsf.rst", "api\\generated\\compas_occ.conversions.compas_trimesh_to_occ_shell.rst", "api\\generated\\compas_occ.conversions.cone_to_occ.rst", "api\\generated\\compas_occ.conversions.cylinder_to_compas.rst", "api\\generated\\compas_occ.conversions.cylinder_to_occ.rst", "api\\generated\\compas_occ.conversions.direction_to_compas.rst", "api\\generated\\compas_occ.conversions.direction_to_occ.rst", "api\\generated\\compas_occ.conversions.ellipse_to_compas.rst", "api\\generated\\compas_occ.conversions.ellipse_to_occ.rst", "api\\generated\\compas_occ.conversions.floats2_from_array2.rst", "api\\generated\\compas_occ.conversions.frame_to_occ_ax2.rst", "api\\generated\\compas_occ.conversions.frame_to_occ_ax3.rst", "api\\generated\\compas_occ.conversions.harray1_from_points1.rst", "api\\generated\\compas_occ.conversions.hyperbola_to_compas.rst", "api\\generated\\compas_occ.conversions.line_to_compas.rst", "api\\generated\\compas_occ.conversions.line_to_occ.rst", "api\\generated\\compas_occ.conversions.location_to_compas.rst", "api\\generated\\compas_occ.conversions.ngon_to_face.rst", "api\\generated\\compas_occ.conversions.parabola_to_compas.rst", "api\\generated\\compas_occ.conversions.plane_to_compas.rst", "api\\generated\\compas_occ.conversions.plane_to_occ.rst", "api\\generated\\compas_occ.conversions.plane_to_occ_ax2.rst", "api\\generated\\compas_occ.conversions.plane_to_occ_ax3.rst", "api\\generated\\compas_occ.conversions.point2d_to_compas.rst", "api\\generated\\compas_occ.conversions.point_to_compas.rst", "api\\generated\\compas_occ.conversions.point_to_occ.rst", "api\\generated\\compas_occ.conversions.points1_from_array1.rst", "api\\generated\\compas_occ.conversions.points2_from_array2.rst", "api\\generated\\compas_occ.conversions.quad_to_face.rst", "api\\generated\\compas_occ.conversions.sphere_to_compas.rst", "api\\generated\\compas_occ.conversions.sphere_to_occ.rst", "api\\generated\\compas_occ.conversions.torus_to_occ.rst", "api\\generated\\compas_occ.conversions.triangle_to_face.rst", "api\\generated\\compas_occ.conversions.vector2d_to_compas.rst", "api\\generated\\compas_occ.conversions.vector_to_compas.rst", "api\\generated\\compas_occ.conversions.vector_to_occ.rst", "api\\generated\\compas_occ.geometry.OCCCurve.rst", "api\\generated\\compas_occ.geometry.OCCCurve.ToString.rst", "api\\generated\\compas_occ.geometry.OCCCurve.aabb.rst", "api\\generated\\compas_occ.geometry.OCCCurve.closest_parameters_curve.rst", "api\\generated\\compas_occ.geometry.OCCCurve.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCCurve.closest_points_curve.rst", "api\\generated\\compas_occ.geometry.OCCCurve.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCCurve.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCCurve.copy.rst", "api\\generated\\compas_occ.geometry.OCCCurve.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.divide.rst", "api\\generated\\compas_occ.geometry.OCCCurve.divide_by_count.rst", "api\\generated\\compas_occ.geometry.OCCCurve.divide_by_length.rst", "api\\generated\\compas_occ.geometry.OCCCurve.embedded.rst", "api\\generated\\compas_occ.geometry.OCCCurve.fair.rst", "api\\generated\\compas_occ.geometry.OCCCurve.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_json.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_step.rst", "api\\generated\\compas_occ.geometry.OCCCurve.length.rst", "api\\generated\\compas_occ.geometry.OCCCurve.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.offset.rst", "api\\generated\\compas_occ.geometry.OCCCurve.parameter_at_distance.rst", "api\\generated\\compas_occ.geometry.OCCCurve.point_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.projected.rst", "api\\generated\\compas_occ.geometry.OCCCurve.reverse.rst", "api\\generated\\compas_occ.geometry.OCCCurve.reversed.rst", "api\\generated\\compas_occ.geometry.OCCCurve.rotate.rst", "api\\generated\\compas_occ.geometry.OCCCurve.rotated.rst", "api\\generated\\compas_occ.geometry.OCCCurve.scale.rst", "api\\generated\\compas_occ.geometry.OCCCurve.scaled.rst", "api\\generated\\compas_occ.geometry.OCCCurve.sha256.rst", "api\\generated\\compas_occ.geometry.OCCCurve.smooth.rst", "api\\generated\\compas_occ.geometry.OCCCurve.split.rst", "api\\generated\\compas_occ.geometry.OCCCurve.tangent_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_json.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_obj.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_points.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_polygon.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_polyline.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_step.rst", "api\\generated\\compas_occ.geometry.OCCCurve.transform.rst", "api\\generated\\compas_occ.geometry.OCCCurve.transformed.rst", "api\\generated\\compas_occ.geometry.OCCCurve.translate.rst", "api\\generated\\compas_occ.geometry.OCCCurve.translated.rst", "api\\generated\\compas_occ.geometry.OCCCurve.trim.rst", "api\\generated\\compas_occ.geometry.OCCCurve.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.ToString.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.aabb.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.copy.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.divide_by_count.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.divide_by_length.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.fair.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_json.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_step.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.length.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.offset.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.point_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.reverse.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.reversed.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.rotate.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.rotated.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.scale.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.scaled.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.sha256.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.smooth.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.split.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.tangent_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_json.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_obj.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_points.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_polygon.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_polyline.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_step.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.transform.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.transformed.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.translate.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.translated.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.trim.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.ToString.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.aabb.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.boundary.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.compute.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.copy.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_face.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_json.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_plane.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_step.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.intersections_with_line.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.isocurve_u.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.isocurve_v.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.obb.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.point_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.pointgrid.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.rotate.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.rotated.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.scale.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.scaled.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.sha256.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.space_u.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.space_v.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_brep.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_json.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_mesh.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_polyhedron.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_quads.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_step.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_tesselation.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_triangles.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.transform.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.transformed.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.translate.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.translated.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.ToString.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.aabb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.closest_points_curve.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.copy.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.divide.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.divide_by_count.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.divide_by_length.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.elevate_degree.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.embedded.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.fair.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_arc.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_circle.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_ellipse.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_interpolation.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_json.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_line.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_native.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_parameters.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_points.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_step.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.insert_knot.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.join.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.joined.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.length.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.offset.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.parameter_at_distance.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.point_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.projected.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.reduce_degree.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.refine_knot.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.remove_knot.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.reverse.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.reversed.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.rotate.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.rotated.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.scale.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.scaled.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.segment.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.segmented.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.sha256.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.smooth.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.split.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.tangent_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_json.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_obj.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_points.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_polygon.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_polyline.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_step.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.transform.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.transformed.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.translate.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.translated.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.trim.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.ToString.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.aabb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.boundary.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.copy.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_extrusion.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_face.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_fill.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_interpolation.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_json.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_meshgrid.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_native.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_parameters.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_plane.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_points.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_step.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.intersections_with_curve.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.intersections_with_line.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.intersections_with_plane.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.isocurve_u.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.isocurve_v.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.mean_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.obb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.point_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.pointgrid.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.rotate.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.rotated.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.scale.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.scaled.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.sha256.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.space_u.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.space_v.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_brep.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_json.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_mesh.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_polyhedron.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_quads.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_step.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_tesselation.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_triangles.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.transform.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.transformed.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.translate.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.translated.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.ToString.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.aabb.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.boundary.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.compute.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.copy.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_face.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_json.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_plane.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_step.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.intersections_with_line.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.isocurve_u.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.isocurve_v.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.obb.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.point_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.pointgrid.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.rotate.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.rotated.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.scale.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.scaled.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.sha256.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.space_u.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.space_v.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_brep.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_json.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_mesh.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_polyhedron.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_quads.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_step.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_tesselation.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_triangles.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.transform.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.transformed.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.translate.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.translated.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCSurface.rst", "api\\generated\\compas_occ.geometry.OCCSurface.ToString.rst", "api\\generated\\compas_occ.geometry.OCCSurface.aabb.rst", "api\\generated\\compas_occ.geometry.OCCSurface.boundary.rst", "api\\generated\\compas_occ.geometry.OCCSurface.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCSurface.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCSurface.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCSurface.copy.rst", "api\\generated\\compas_occ.geometry.OCCSurface.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_face.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_json.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_plane.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_step.rst", "api\\generated\\compas_occ.geometry.OCCSurface.gaussian_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.intersections_with_curve.rst", "api\\generated\\compas_occ.geometry.OCCSurface.intersections_with_line.rst", "api\\generated\\compas_occ.geometry.OCCSurface.intersections_with_plane.rst", "api\\generated\\compas_occ.geometry.OCCSurface.isocurve_u.rst", "api\\generated\\compas_occ.geometry.OCCSurface.isocurve_v.rst", "api\\generated\\compas_occ.geometry.OCCSurface.mean_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.obb.rst", "api\\generated\\compas_occ.geometry.OCCSurface.point_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.pointgrid.rst", "api\\generated\\compas_occ.geometry.OCCSurface.rotate.rst", "api\\generated\\compas_occ.geometry.OCCSurface.rotated.rst", "api\\generated\\compas_occ.geometry.OCCSurface.scale.rst", "api\\generated\\compas_occ.geometry.OCCSurface.scaled.rst", "api\\generated\\compas_occ.geometry.OCCSurface.sha256.rst", "api\\generated\\compas_occ.geometry.OCCSurface.space_u.rst", "api\\generated\\compas_occ.geometry.OCCSurface.space_v.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_brep.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_json.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_mesh.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_polyhedron.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_quads.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_step.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_tesselation.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_triangles.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_vertices_and_faces.rst", "api\\generated\\compas_occ.geometry.OCCSurface.transform.rst", "api\\generated\\compas_occ.geometry.OCCSurface.transformed.rst", "api\\generated\\compas_occ.geometry.OCCSurface.translate.rst", "api\\generated\\compas_occ.geometry.OCCSurface.translated.rst", "api\\generated\\compas_occ.geometry.OCCSurface.validate_data.rst", "examples.rst", "examples\\breps\\brep_explorer.rst", "examples\\breps\\brep_fillet.rst", "examples\\breps\\brep_from_booleans.rst", "examples\\breps\\brep_from_mesh.rst", "examples\\breps\\brep_overlap.rst", "examples\\breps\\brep_slice.rst", "examples\\breps\\brep_split.rst", "examples\\breps\\brep_trim.rst", "examples\\breps\\brep_with_hole.rst", "examples\\breps\\brep_with_holes.rst", "examples\\breps\\index.rst", "examples\\curves\\curve_closest_parameters_curve.rst", "examples\\curves\\curve_closest_point.rst", "examples\\curves\\curve_comparison1.rst", "examples\\curves\\curve_comparison2.rst", "examples\\curves\\curve_divide.rst", "examples\\curves\\curve_from_circle.rst", "examples\\curves\\curve_from_interpolation.rst", "examples\\curves\\curve_from_line.rst", "examples\\curves\\curve_from_parameters.rst", "examples\\curves\\curve_from_points.rst", "examples\\curves\\curve_joining.rst", "examples\\curves\\curve_segmentation.rst", "examples\\curves\\index.rst", "examples\\surfaces\\index.rst", "examples\\surfaces\\surface_aabb.rst", "examples\\surfaces\\surface_frames.rst", "examples\\surfaces\\surface_from_extrusion-1.rst", "examples\\surfaces\\surface_from_extrusion-2.rst", "examples\\surfaces\\surface_from_fill.rst", "examples\\surfaces\\surface_from_meshgrid.rst", "examples\\surfaces\\surface_from_parameters.rst", "examples\\surfaces\\surface_from_points.rst", "examples\\surfaces\\surface_intersections_with_line.rst", "examples\\surfaces\\surface_isocurves.rst", "examples\\surfaces\\surface_jsondata.rst", "examples\\surfaces\\surface_random.rst", "examples\\surfaces\\surface_spacepoints.rst", "index.rst", "installation.rst", "license.rst", "tutorial.rst"], "titles": ["Acknowledgements", "API Reference", "compas_occ.brep", "compas_occ.conversions", "compas_occ.geometry", "Curves", "Surfaces", "OCCBrep", "OCCBrep.ToString", "OCCBrep.check", "OCCBrep.compute_aabb", "OCCBrep.compute_obb", "OCCBrep.contains", "OCCBrep.contours", "OCCBrep.copy", "OCCBrep.cull_unused_edges", "OCCBrep.cull_unused_faces", "OCCBrep.cull_unused_loops", "OCCBrep.cull_unused_vertices", "OCCBrep.edge_faces", "OCCBrep.edge_loop", "OCCBrep.edge_loops", "OCCBrep.fillet", "OCCBrep.filleted", "OCCBrep.fix", "OCCBrep.from_boolean_difference", "OCCBrep.from_boolean_intersection", "OCCBrep.from_boolean_union", "OCCBrep.from_box", "OCCBrep.from_brepfaces", "OCCBrep.from_breps", "OCCBrep.from_cone", "OCCBrep.from_curves", "OCCBrep.from_cylinder", "OCCBrep.from_extrusion", "OCCBrep.from_iges", "OCCBrep.from_json", "OCCBrep.from_jsonstring", "OCCBrep.from_loft", "OCCBrep.from_mesh", "OCCBrep.from_native", "OCCBrep.from_pipe", "OCCBrep.from_plane", "OCCBrep.from_planes", "OCCBrep.from_polygons", "OCCBrep.from_shape", "OCCBrep.from_sphere", "OCCBrep.from_step", "OCCBrep.from_surface", "OCCBrep.from_sweep", "OCCBrep.from_torus", "OCCBrep.heal", "OCCBrep.make_solid", "OCCBrep.overlap", "OCCBrep.rotate", "OCCBrep.rotated", "OCCBrep.scale", "OCCBrep.scaled", "OCCBrep.sew", "OCCBrep.sha256", "OCCBrep.simplify", "OCCBrep.slice", "OCCBrep.split", "OCCBrep.to_iges", "OCCBrep.to_json", "OCCBrep.to_jsonstring", "OCCBrep.to_meshes", "OCCBrep.to_polygons", "OCCBrep.to_step", "OCCBrep.to_stl", "OCCBrep.to_tesselation", "OCCBrep.to_viewmesh", "OCCBrep.transform", "OCCBrep.transformed", "OCCBrep.translate", "OCCBrep.translated", "OCCBrep.trim", "OCCBrep.trimmed", "OCCBrep.validate_data", "OCCBrep.vertex_edges", "OCCBrep.vertex_faces", "OCCBrep.vertex_neighbors", "OCCBrepEdge", "OCCBrepEdge.ToString", "OCCBrepEdge.copy", "OCCBrepEdge.from_circle", "OCCBrepEdge.from_curve", "OCCBrepEdge.from_ellipse", "OCCBrepEdge.from_json", "OCCBrepEdge.from_jsonstring", "OCCBrepEdge.from_line", "OCCBrepEdge.from_point_point", "OCCBrepEdge.from_points", "OCCBrepEdge.from_vertex_vertex", "OCCBrepEdge.from_vertices", "OCCBrepEdge.is_equal", "OCCBrepEdge.is_same", "OCCBrepEdge.sha256", "OCCBrepEdge.to_bezier", "OCCBrepEdge.to_bspline", "OCCBrepEdge.to_circle", "OCCBrepEdge.to_curve", "OCCBrepEdge.to_ellipse", "OCCBrepEdge.to_hyperbola", "OCCBrepEdge.to_json", "OCCBrepEdge.to_jsonstring", "OCCBrepEdge.to_line", "OCCBrepEdge.to_parabola", "OCCBrepEdge.validate_data", "OCCBrepFace", "OCCBrepFace.ToString", "OCCBrepFace.add_loop", "OCCBrepFace.add_loops", "OCCBrepFace.adjacent_faces", "OCCBrepFace.as_brep", "OCCBrepFace.copy", "OCCBrepFace.fix", "OCCBrepFace.from_cone", "OCCBrepFace.from_cylinder", "OCCBrepFace.from_json", "OCCBrepFace.from_jsonstring", "OCCBrepFace.from_plane", "OCCBrepFace.from_polygon", "OCCBrepFace.from_sphere", "OCCBrepFace.from_surface", "OCCBrepFace.from_torus", "OCCBrepFace.is_equal", "OCCBrepFace.is_same", "OCCBrepFace.is_valid", "OCCBrepFace.sha256", "OCCBrepFace.to_cone", "OCCBrepFace.to_cylinder", "OCCBrepFace.to_json", "OCCBrepFace.to_jsonstring", "OCCBrepFace.to_plane", "OCCBrepFace.to_polygon", "OCCBrepFace.to_sphere", "OCCBrepFace.to_torus", "OCCBrepFace.try_get_nurbssurface", "OCCBrepFace.validate_data", "OCCBrepLoop", "OCCBrepLoop.ToString", "OCCBrepLoop.copy", "OCCBrepLoop.fix", "OCCBrepLoop.from_edges", "OCCBrepLoop.from_json", "OCCBrepLoop.from_jsonstring", "OCCBrepLoop.from_polygon", "OCCBrepLoop.from_polyline", "OCCBrepLoop.is_equal", "OCCBrepLoop.is_same", "OCCBrepLoop.sha256", "OCCBrepLoop.to_json", "OCCBrepLoop.to_jsonstring", "OCCBrepLoop.validate_data", "OCCBrepVertex", "OCCBrepVertex.ToString", "OCCBrepVertex.copy", "OCCBrepVertex.from_json", "OCCBrepVertex.from_jsonstring", "OCCBrepVertex.from_point", "OCCBrepVertex.is_equal", "OCCBrepVertex.is_same", "OCCBrepVertex.sha256", "OCCBrepVertex.to_json", "OCCBrepVertex.to_jsonstring", "OCCBrepVertex.validate_data", "array1_from_floats1", "array1_from_integers1", "array1_from_points1", "array2_from_floats2", "array2_from_points2", "ax2_to_compas", "ax3_to_compas", "axis_to_compas", "axis_to_compas_vector", "axis_to_occ", "bezier_to_compas", "bspline_to_compas", "circle_to_compas", "circle_to_occ", "compas_mesh_to_occ_shell", "compas_quadmesh_to_occ_shell", "compas_transformation_to_trsf", "compas_trimesh_to_occ_shell", "cone_to_occ", "cylinder_to_compas", "cylinder_to_occ", "direction_to_compas", "direction_to_occ", "ellipse_to_compas", "ellipse_to_occ", "floats2_from_array2", "frame_to_occ_ax2", "frame_to_occ_ax3", "harray1_from_points1", "hyperbola_to_compas", "line_to_compas", "line_to_occ", "location_to_compas", "ngon_to_face", "parabola_to_compas", "plane_to_compas", "plane_to_occ", "plane_to_occ_ax2", "plane_to_occ_ax3", "point2d_to_compas", "point_to_compas", "point_to_occ", "points1_from_array1", "points2_from_array2", "quad_to_face", "sphere_to_compas", "sphere_to_occ", "torus_to_occ", "triangle_to_face", "vector2d_to_compas", "vector_to_compas", "vector_to_occ", "OCCCurve", "OCCCurve.ToString", "OCCCurve.aabb", "OCCCurve.closest_parameters_curve", "OCCCurve.closest_point", "OCCCurve.closest_points_curve", "OCCCurve.compute_aabb", "OCCCurve.compute_obb", "OCCCurve.copy", "OCCCurve.curvature_at", "OCCCurve.divide", "OCCCurve.divide_by_count", "OCCCurve.divide_by_length", "OCCCurve.embedded", "OCCCurve.fair", "OCCCurve.frame_at", "OCCCurve.from_json", "OCCCurve.from_jsonstring", "OCCCurve.from_obj", "OCCCurve.from_occ", "OCCCurve.from_step", "OCCCurve.length", "OCCCurve.normal_at", "OCCCurve.offset", "OCCCurve.parameter_at_distance", "OCCCurve.point_at", "OCCCurve.projected", "OCCCurve.reverse", "OCCCurve.reversed", "OCCCurve.rotate", "OCCCurve.rotated", "OCCCurve.scale", "OCCCurve.scaled", "OCCCurve.sha256", "OCCCurve.smooth", "OCCCurve.split", "OCCCurve.tangent_at", "OCCCurve.to_json", "OCCCurve.to_jsonstring", "OCCCurve.to_obj", "OCCCurve.to_points", "OCCCurve.to_polygon", "OCCCurve.to_polyline", "OCCCurve.to_step", "OCCCurve.transform", "OCCCurve.transformed", "OCCCurve.translate", "OCCCurve.translated", "OCCCurve.trim", "OCCCurve.validate_data", "OCCCurve2d", "OCCCurve2d.ToString", "OCCCurve2d.aabb", "OCCCurve2d.closest_point", "OCCCurve2d.compute_aabb", "OCCCurve2d.compute_obb", "OCCCurve2d.copy", "OCCCurve2d.curvature_at", "OCCCurve2d.divide_by_count", "OCCCurve2d.divide_by_length", "OCCCurve2d.fair", "OCCCurve2d.frame_at", "OCCCurve2d.from_json", "OCCCurve2d.from_jsonstring", "OCCCurve2d.from_obj", "OCCCurve2d.from_occ", "OCCCurve2d.from_step", "OCCCurve2d.length", "OCCCurve2d.normal_at", "OCCCurve2d.offset", "OCCCurve2d.point_at", "OCCCurve2d.reverse", "OCCCurve2d.reversed", "OCCCurve2d.rotate", "OCCCurve2d.rotated", "OCCCurve2d.scale", "OCCCurve2d.scaled", "OCCCurve2d.sha256", "OCCCurve2d.smooth", "OCCCurve2d.split", "OCCCurve2d.tangent_at", "OCCCurve2d.to_json", "OCCCurve2d.to_jsonstring", "OCCCurve2d.to_obj", "OCCCurve2d.to_points", "OCCCurve2d.to_polygon", "OCCCurve2d.to_polyline", "OCCCurve2d.to_step", "OCCCurve2d.transform", "OCCCurve2d.transformed", "OCCCurve2d.translate", "OCCCurve2d.translated", "OCCCurve2d.trim", "OCCCurve2d.validate_data", "OCCExtrusionSurface", "OCCExtrusionSurface.ToString", "OCCExtrusionSurface.aabb", "OCCExtrusionSurface.boundary", "OCCExtrusionSurface.closest_point", "OCCExtrusionSurface.compute", "OCCExtrusionSurface.compute_aabb", "OCCExtrusionSurface.compute_obb", "OCCExtrusionSurface.copy", "OCCExtrusionSurface.curvature_at", "OCCExtrusionSurface.frame_at", "OCCExtrusionSurface.from_face", "OCCExtrusionSurface.from_json", "OCCExtrusionSurface.from_jsonstring", "OCCExtrusionSurface.from_obj", "OCCExtrusionSurface.from_occ", "OCCExtrusionSurface.from_plane", "OCCExtrusionSurface.from_step", "OCCExtrusionSurface.gaussian_curvature_at", "OCCExtrusionSurface.intersections_with_curve", "OCCExtrusionSurface.intersections_with_line", "OCCExtrusionSurface.intersections_with_plane", "OCCExtrusionSurface.isocurve_u", "OCCExtrusionSurface.isocurve_v", "OCCExtrusionSurface.mean_curvature_at", "OCCExtrusionSurface.normal_at", "OCCExtrusionSurface.obb", "OCCExtrusionSurface.point_at", "OCCExtrusionSurface.pointgrid", "OCCExtrusionSurface.rotate", "OCCExtrusionSurface.rotated", "OCCExtrusionSurface.scale", "OCCExtrusionSurface.scaled", "OCCExtrusionSurface.sha256", "OCCExtrusionSurface.space_u", "OCCExtrusionSurface.space_v", "OCCExtrusionSurface.to_brep", "OCCExtrusionSurface.to_json", "OCCExtrusionSurface.to_jsonstring", "OCCExtrusionSurface.to_mesh", "OCCExtrusionSurface.to_polyhedron", "OCCExtrusionSurface.to_quads", "OCCExtrusionSurface.to_step", "OCCExtrusionSurface.to_tesselation", "OCCExtrusionSurface.to_triangles", "OCCExtrusionSurface.to_vertices_and_faces", "OCCExtrusionSurface.transform", "OCCExtrusionSurface.transformed", "OCCExtrusionSurface.translate", "OCCExtrusionSurface.translated", "OCCExtrusionSurface.validate_data", "OCCNurbsCurve", "OCCNurbsCurve.ToString", "OCCNurbsCurve.aabb", "OCCNurbsCurve.closest_parameters_curve", "OCCNurbsCurve.closest_point", "OCCNurbsCurve.closest_points_curve", "OCCNurbsCurve.compute_aabb", "OCCNurbsCurve.compute_obb", "OCCNurbsCurve.copy", "OCCNurbsCurve.curvature_at", "OCCNurbsCurve.divide", "OCCNurbsCurve.divide_by_count", "OCCNurbsCurve.divide_by_length", "OCCNurbsCurve.elevate_degree", "OCCNurbsCurve.embedded", "OCCNurbsCurve.fair", "OCCNurbsCurve.frame_at", "OCCNurbsCurve.from_arc", "OCCNurbsCurve.from_circle", "OCCNurbsCurve.from_ellipse", "OCCNurbsCurve.from_interpolation", "OCCNurbsCurve.from_json", "OCCNurbsCurve.from_jsonstring", "OCCNurbsCurve.from_line", "OCCNurbsCurve.from_native", "OCCNurbsCurve.from_obj", "OCCNurbsCurve.from_occ", "OCCNurbsCurve.from_parameters", "OCCNurbsCurve.from_points", "OCCNurbsCurve.from_step", "OCCNurbsCurve.insert_knot", "OCCNurbsCurve.join", "OCCNurbsCurve.joined", "OCCNurbsCurve.length", "OCCNurbsCurve.normal_at", "OCCNurbsCurve.offset", "OCCNurbsCurve.parameter_at_distance", "OCCNurbsCurve.point_at", "OCCNurbsCurve.projected", "OCCNurbsCurve.reduce_degree", "OCCNurbsCurve.refine_knot", "OCCNurbsCurve.remove_knot", "OCCNurbsCurve.reverse", "OCCNurbsCurve.reversed", "OCCNurbsCurve.rotate", "OCCNurbsCurve.rotated", "OCCNurbsCurve.scale", "OCCNurbsCurve.scaled", "OCCNurbsCurve.segment", "OCCNurbsCurve.segmented", "OCCNurbsCurve.sha256", "OCCNurbsCurve.smooth", "OCCNurbsCurve.split", "OCCNurbsCurve.tangent_at", "OCCNurbsCurve.to_json", "OCCNurbsCurve.to_jsonstring", "OCCNurbsCurve.to_obj", "OCCNurbsCurve.to_points", "OCCNurbsCurve.to_polygon", "OCCNurbsCurve.to_polyline", "OCCNurbsCurve.to_step", "OCCNurbsCurve.transform", "OCCNurbsCurve.transformed", "OCCNurbsCurve.translate", "OCCNurbsCurve.translated", "OCCNurbsCurve.trim", "OCCNurbsCurve.validate_data", "OCCNurbsSurface", "OCCNurbsSurface.ToString", "OCCNurbsSurface.aabb", "OCCNurbsSurface.boundary", "OCCNurbsSurface.closest_point", "OCCNurbsSurface.compute_aabb", "OCCNurbsSurface.compute_obb", "OCCNurbsSurface.copy", "OCCNurbsSurface.curvature_at", "OCCNurbsSurface.frame_at", "OCCNurbsSurface.from_extrusion", "OCCNurbsSurface.from_face", "OCCNurbsSurface.from_fill", "OCCNurbsSurface.from_interpolation", "OCCNurbsSurface.from_json", "OCCNurbsSurface.from_jsonstring", "OCCNurbsSurface.from_meshgrid", "OCCNurbsSurface.from_native", "OCCNurbsSurface.from_obj", "OCCNurbsSurface.from_occ", "OCCNurbsSurface.from_parameters", "OCCNurbsSurface.from_plane", "OCCNurbsSurface.from_points", "OCCNurbsSurface.from_step", "OCCNurbsSurface.gaussian_curvature_at", "OCCNurbsSurface.intersections_with_curve", "OCCNurbsSurface.intersections_with_line", "OCCNurbsSurface.intersections_with_plane", "OCCNurbsSurface.isocurve_u", "OCCNurbsSurface.isocurve_v", "OCCNurbsSurface.mean_curvature_at", "OCCNurbsSurface.normal_at", "OCCNurbsSurface.obb", "OCCNurbsSurface.point_at", "OCCNurbsSurface.pointgrid", "OCCNurbsSurface.rotate", "OCCNurbsSurface.rotated", "OCCNurbsSurface.scale", "OCCNurbsSurface.scaled", "OCCNurbsSurface.sha256", "OCCNurbsSurface.space_u", "OCCNurbsSurface.space_v", "OCCNurbsSurface.to_brep", "OCCNurbsSurface.to_json", "OCCNurbsSurface.to_jsonstring", "OCCNurbsSurface.to_mesh", "OCCNurbsSurface.to_polyhedron", "OCCNurbsSurface.to_quads", "OCCNurbsSurface.to_step", "OCCNurbsSurface.to_tesselation", "OCCNurbsSurface.to_triangles", "OCCNurbsSurface.to_vertices_and_faces", "OCCNurbsSurface.transform", "OCCNurbsSurface.transformed", "OCCNurbsSurface.translate", "OCCNurbsSurface.translated", "OCCNurbsSurface.validate_data", "OCCRevolutionSurface", "OCCRevolutionSurface.ToString", "OCCRevolutionSurface.aabb", "OCCRevolutionSurface.boundary", "OCCRevolutionSurface.closest_point", "OCCRevolutionSurface.compute", "OCCRevolutionSurface.compute_aabb", "OCCRevolutionSurface.compute_obb", "OCCRevolutionSurface.copy", "OCCRevolutionSurface.curvature_at", "OCCRevolutionSurface.frame_at", "OCCRevolutionSurface.from_face", "OCCRevolutionSurface.from_json", "OCCRevolutionSurface.from_jsonstring", "OCCRevolutionSurface.from_obj", "OCCRevolutionSurface.from_occ", "OCCRevolutionSurface.from_plane", "OCCRevolutionSurface.from_step", "OCCRevolutionSurface.gaussian_curvature_at", "OCCRevolutionSurface.intersections_with_curve", "OCCRevolutionSurface.intersections_with_line", "OCCRevolutionSurface.intersections_with_plane", "OCCRevolutionSurface.isocurve_u", "OCCRevolutionSurface.isocurve_v", "OCCRevolutionSurface.mean_curvature_at", "OCCRevolutionSurface.normal_at", "OCCRevolutionSurface.obb", "OCCRevolutionSurface.point_at", "OCCRevolutionSurface.pointgrid", "OCCRevolutionSurface.rotate", "OCCRevolutionSurface.rotated", "OCCRevolutionSurface.scale", "OCCRevolutionSurface.scaled", "OCCRevolutionSurface.sha256", "OCCRevolutionSurface.space_u", "OCCRevolutionSurface.space_v", "OCCRevolutionSurface.to_brep", "OCCRevolutionSurface.to_json", "OCCRevolutionSurface.to_jsonstring", "OCCRevolutionSurface.to_mesh", "OCCRevolutionSurface.to_polyhedron", "OCCRevolutionSurface.to_quads", "OCCRevolutionSurface.to_step", "OCCRevolutionSurface.to_tesselation", "OCCRevolutionSurface.to_triangles", "OCCRevolutionSurface.to_vertices_and_faces", "OCCRevolutionSurface.transform", "OCCRevolutionSurface.transformed", "OCCRevolutionSurface.translate", "OCCRevolutionSurface.translated", "OCCRevolutionSurface.validate_data", "OCCSurface", "OCCSurface.ToString", "OCCSurface.aabb", "OCCSurface.boundary", "OCCSurface.closest_point", "OCCSurface.compute_aabb", "OCCSurface.compute_obb", "OCCSurface.copy", "OCCSurface.curvature_at", "OCCSurface.frame_at", "OCCSurface.from_face", "OCCSurface.from_json", "OCCSurface.from_jsonstring", "OCCSurface.from_obj", "OCCSurface.from_occ", "OCCSurface.from_plane", "OCCSurface.from_step", "OCCSurface.gaussian_curvature_at", "OCCSurface.intersections_with_curve", "OCCSurface.intersections_with_line", "OCCSurface.intersections_with_plane", "OCCSurface.isocurve_u", "OCCSurface.isocurve_v", "OCCSurface.mean_curvature_at", "OCCSurface.normal_at", "OCCSurface.obb", "OCCSurface.point_at", "OCCSurface.pointgrid", "OCCSurface.rotate", "OCCSurface.rotated", "OCCSurface.scale", "OCCSurface.scaled", "OCCSurface.sha256", "OCCSurface.space_u", "OCCSurface.space_v", "OCCSurface.to_brep", "OCCSurface.to_json", "OCCSurface.to_jsonstring", "OCCSurface.to_mesh", "OCCSurface.to_polyhedron", "OCCSurface.to_quads", "OCCSurface.to_step", "OCCSurface.to_tesselation", "OCCSurface.to_triangles", "OCCSurface.to_vertices_and_faces", "OCCSurface.transform", "OCCSurface.transformed", "OCCSurface.translate", "OCCSurface.translated", "OCCSurface.validate_data", "Examples", "Explore Brep Topology", "Add a Fillet to the Edges of a Brep", "Brep Shape From Booleans", "Brep From Mesh", "Find the Overlap Between Two Breps", "Slice a Brep With a Plane", "Split a Brep With a Plane", "Trim a Brep With a Plane", "Brep with Hole", "Brep with Holes", "Breps", "Curve Closest Parameters Curve", "Curve Closest Point", "Curve Comparison 1", "Curve Comparison 2", "Curve Divide", "Curve From Circle", "Curve From Interpolation", "Curve From Line", "Curve From Parameters", "Curve From Control Points", "Curve Joining", "Curve Segmentation", "Curves", "Surfaces", "Surface Axis-Aligned Bounding Box", "Surface Frames", "Surface From Extrusion 1", "Surface From Extrusion 2", "Surface From Fill", "Surface From Meshgrid", "Surface From Parameters", "Surface From Points", "Surface Intersections With Line", "Surface Isocurves", "Surface JSON Data", "Surface With Random Control Points", "Surface Points Over UV Space", "COMPAS OCC", "Installation", "License", "Tutorial"], "terms": {"compas_occ": [1, 7, 82, 109, 111, 112, 117, 118, 121, 123, 124, 125, 140, 144, 155, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 232, 245, 269, 313, 321, 332, 364, 372, 378, 402, 431, 438, 441, 456, 488, 496, 507, 539, 546, 557, 598, 599, 604, 628, 629, 631], "brep": [1, 7, 12, 13, 14, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 53, 61, 62, 63, 66, 67, 68, 69, 71, 72, 73, 76, 77, 82, 109, 111, 112, 114, 117, 118, 121, 122, 123, 124, 125, 140, 144, 155, 200, 211, 215, 349, 473, 524, 574, 589, 628], "convers": [1, 8, 83, 110, 141, 156, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 220, 270, 314, 365, 432, 489, 540, 628], "geometri": [1, 10, 11, 12, 38, 41, 42, 43, 54, 55, 56, 57, 60, 66, 67, 68, 69, 70, 72, 73, 74, 75, 82, 85, 86, 87, 90, 91, 92, 94, 98, 99, 100, 101, 102, 103, 106, 107, 109, 113, 114, 117, 118, 121, 122, 123, 124, 125, 130, 131, 134, 135, 136, 137, 138, 147, 148, 160, 169, 171, 175, 176, 180, 183, 185, 187, 189, 191, 193, 194, 195, 198, 203, 204, 205, 208, 213, 214, 218, 219, 225, 226, 232, 237, 239, 241, 242, 245, 247, 248, 249, 250, 251, 258, 259, 260, 261, 262, 264, 265, 266, 269, 271, 272, 273, 274, 277, 278, 283, 285, 287, 291, 292, 293, 294, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 313, 319, 320, 321, 327, 329, 330, 332, 334, 338, 342, 343, 344, 345, 349, 354, 355, 357, 358, 360, 361, 362, 364, 370, 371, 372, 378, 381, 382, 383, 387, 388, 389, 393, 398, 399, 402, 407, 408, 409, 410, 411, 420, 421, 422, 423, 424, 426, 427, 428, 431, 436, 437, 438, 441, 444, 447, 448, 449, 452, 456, 458, 462, 466, 467, 468, 469, 473, 478, 479, 481, 482, 484, 485, 486, 488, 494, 495, 496, 502, 504, 505, 507, 509, 513, 517, 518, 519, 520, 524, 529, 530, 532, 533, 535, 536, 537, 539, 544, 545, 546, 552, 554, 555, 557, 559, 563, 567, 568, 569, 570, 574, 579, 580, 582, 583, 585, 586, 587, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 631], "none": [3, 9, 15, 16, 17, 18, 22, 23, 24, 41, 48, 51, 52, 54, 55, 56, 57, 58, 60, 61, 63, 68, 69, 72, 74, 76, 84, 85, 86, 90, 98, 99, 103, 107, 111, 112, 115, 116, 117, 118, 121, 123, 124, 125, 138, 142, 143, 157, 172, 173, 175, 179, 186, 188, 190, 197, 202, 206, 207, 212, 216, 217, 233, 246, 248, 249, 250, 251, 258, 259, 262, 263, 265, 279, 286, 290, 292, 293, 294, 295, 302, 303, 306, 307, 309, 318, 342, 343, 344, 345, 352, 353, 354, 355, 357, 358, 359, 361, 379, 381, 395, 396, 406, 408, 409, 410, 411, 412, 420, 421, 424, 425, 427, 443, 466, 467, 468, 469, 476, 477, 478, 479, 481, 482, 483, 485, 493, 517, 518, 519, 520, 527, 528, 529, 530, 532, 533, 534, 536, 567, 568, 569, 570, 577, 578, 579, 580, 582, 583, 584, 586], "curv": [4, 12, 32, 34, 38, 41, 69, 70, 82, 86, 98, 101, 177, 178, 219, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 234, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 255, 258, 259, 260, 261, 262, 263, 269, 271, 272, 275, 276, 277, 278, 280, 283, 284, 285, 286, 287, 289, 290, 291, 299, 302, 303, 304, 305, 306, 307, 313, 316, 317, 318, 323, 332, 334, 335, 336, 364, 366, 367, 368, 369, 372, 373, 374, 375, 376, 378, 380, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 395, 396, 397, 398, 399, 400, 401, 402, 406, 407, 412, 413, 417, 420, 421, 422, 423, 424, 425, 431, 434, 435, 440, 441, 443, 456, 458, 459, 460, 488, 491, 492, 493, 498, 507, 509, 510, 511, 542, 543, 548, 557, 559, 560, 561, 589, 598, 617, 618, 619, 624, 625, 628], "surfac": [4, 7, 12, 48, 66, 86, 109, 124, 130, 131, 134, 136, 137, 138, 200, 211, 232, 245, 269, 313, 315, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 331, 337, 338, 339, 340, 341, 347, 348, 349, 352, 353, 354, 355, 356, 357, 358, 359, 378, 402, 431, 433, 434, 435, 438, 439, 441, 442, 443, 444, 447, 448, 449, 450, 451, 452, 453, 454, 455, 461, 462, 463, 464, 465, 471, 472, 473, 476, 477, 478, 479, 480, 481, 482, 483, 488, 490, 491, 492, 493, 496, 497, 499, 502, 503, 504, 505, 506, 512, 513, 514, 515, 516, 522, 523, 524, 527, 528, 529, 530, 531, 532, 533, 534, 539, 541, 542, 543, 546, 547, 549, 552, 553, 554, 555, 556, 562, 563, 564, 565, 566, 572, 573, 574, 577, 578, 579, 580, 581, 582, 583, 584, 589, 598, 628], "class": [7, 8, 82, 83, 109, 110, 140, 141, 155, 156, 169, 176, 180, 183, 185, 187, 189, 191, 193, 194, 195, 198, 203, 204, 205, 208, 211, 213, 214, 215, 218, 219, 220, 269, 270, 313, 314, 364, 365, 431, 432, 488, 489, 539, 540], "arg": [7, 14, 219, 269, 313, 364, 431, 488, 539], "kwarg": [7, 14, 219, 269, 313, 364, 431, 488, 539], "base": [7, 54, 55, 68, 82, 109, 140, 155, 219, 248, 249, 269, 292, 293, 313, 342, 343, 364, 408, 409, 431, 466, 467, 488, 517, 518, 539, 567, 568, 623, 631], "boundari": [7, 117, 118, 121, 123, 124, 125, 625, 628, 631], "represent": [7, 8, 64, 65, 83, 104, 105, 110, 114, 132, 133, 141, 152, 153, 156, 164, 165, 220, 256, 257, 270, 300, 301, 314, 349, 350, 351, 365, 418, 419, 432, 473, 474, 475, 489, 524, 525, 526, 540, 574, 575, 576, 628, 631], "geometr": [7, 12, 82, 109, 140, 155], "entiti": 7, "attribut": [7, 82, 109, 140, 155, 219, 269, 313, 364, 431, 488, 539], "vertic": [7, 18, 81, 82, 85, 86, 90, 93, 94, 109, 140, 161, 162, 358, 482, 533, 583, 590, 591], "list": [7, 13, 19, 21, 22, 23, 25, 29, 32, 38, 43, 44, 53, 62, 66, 70, 79, 80, 81, 82, 92, 94, 109, 112, 113, 140, 144, 167, 168, 169, 170, 171, 192, 195, 209, 210, 229, 230, 231, 259, 277, 278, 303, 307, 316, 332, 333, 334, 347, 348, 354, 357, 358, 364, 374, 375, 376, 384, 391, 392, 421, 431, 434, 444, 451, 453, 456, 457, 458, 471, 472, 478, 481, 482, 491, 507, 508, 509, 522, 523, 529, 532, 533, 539, 542, 557, 558, 559, 572, 573, 579, 582, 583, 591, 623], "occbrepvertex": [7, 79, 80, 81, 628], "read": [7, 82, 109, 140, 155, 219, 269, 364, 431, 539], "onli": [7, 82, 109, 140, 155, 219, 229, 230, 231, 269, 272, 277, 278, 364, 374, 375, 376, 431, 539], "The": [7, 12, 13, 21, 22, 23, 36, 37, 40, 41, 45, 48, 53, 54, 55, 56, 57, 61, 64, 65, 66, 74, 75, 76, 77, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 104, 105, 108, 111, 112, 115, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 132, 133, 139, 142, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 157, 158, 159, 160, 161, 162, 164, 165, 166, 172, 173, 174, 175, 177, 178, 179, 180, 185, 186, 187, 188, 189, 190, 191, 193, 194, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 212, 213, 214, 216, 217, 218, 219, 222, 223, 224, 228, 229, 230, 231, 232, 234, 235, 236, 237, 239, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 257, 258, 259, 260, 261, 264, 265, 266, 268, 269, 272, 276, 277, 278, 280, 281, 282, 283, 285, 287, 289, 292, 293, 294, 295, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 310, 312, 313, 317, 325, 326, 327, 328, 329, 330, 341, 342, 343, 344, 345, 347, 348, 350, 351, 352, 353, 354, 357, 358, 360, 361, 362, 363, 364, 367, 368, 369, 373, 374, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 389, 391, 392, 393, 395, 396, 398, 399, 400, 401, 402, 408, 409, 410, 411, 417, 418, 419, 420, 421, 422, 423, 426, 427, 428, 430, 431, 435, 441, 444, 445, 446, 449, 450, 451, 452, 453, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 481, 482, 484, 485, 486, 487, 488, 492, 500, 501, 502, 503, 504, 505, 516, 517, 518, 519, 520, 522, 523, 525, 526, 527, 528, 529, 532, 533, 535, 536, 537, 538, 539, 543, 550, 551, 552, 553, 554, 555, 566, 567, 568, 569, 570, 572, 573, 575, 576, 577, 578, 579, 582, 583, 585, 586, 587, 588, 628, 630, 631], "edg": [7, 15, 19, 20, 21, 22, 23, 60, 79, 82, 85, 86, 87, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 106, 107, 109, 140, 144, 589, 590, 598, 600, 628], "occbrepedg": [7, 19, 21, 22, 23, 79, 598, 599, 628], "loop": [7, 17, 20, 21, 48, 109, 111, 112, 117, 118, 121, 123, 124, 125, 140, 143, 144, 147, 148, 149, 150, 591, 598], "occbreploop": [7, 21, 48, 111, 112, 117, 118, 121, 123, 124, 125, 598, 599, 628], "face": [7, 16, 19, 29, 59, 60, 66, 67, 80, 97, 109, 111, 112, 113, 114, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 134, 135, 136, 137, 151, 163, 182, 184, 200, 211, 215, 252, 296, 324, 346, 352, 353, 354, 357, 358, 414, 442, 470, 476, 477, 478, 481, 482, 499, 521, 527, 528, 529, 532, 533, 549, 571, 577, 578, 579, 582, 583, 590, 594, 598, 599], "occbrepfac": [7, 19, 29, 53, 61, 80, 598, 599, 628], "frame": [7, 172, 173, 179, 186, 190, 193, 194, 196, 199, 201, 212, 234, 280, 307, 323, 380, 440, 498, 548, 589, 592, 598, 599, 614, 628], "local": [7, 234, 280, 307, 323, 380, 440, 498, 548, 629], "coordin": [7, 193, 194, 204, 205, 307], "system": [7, 193, 194, 204, 205, 307], "area": 7, "float": [7, 22, 23, 41, 42, 48, 53, 54, 55, 56, 57, 69, 70, 85, 86, 90, 121, 124, 167, 170, 192, 219, 221, 222, 223, 224, 228, 229, 230, 231, 234, 240, 241, 242, 243, 244, 248, 249, 250, 251, 255, 269, 272, 276, 277, 278, 280, 286, 287, 289, 292, 293, 294, 295, 299, 307, 315, 317, 322, 323, 331, 335, 336, 337, 338, 339, 340, 342, 343, 344, 345, 347, 348, 364, 366, 367, 368, 369, 373, 374, 375, 376, 380, 384, 391, 395, 396, 397, 398, 399, 400, 401, 408, 409, 410, 411, 412, 413, 417, 431, 433, 435, 439, 440, 444, 451, 455, 459, 460, 461, 462, 463, 464, 466, 467, 468, 469, 471, 472, 490, 492, 497, 498, 506, 510, 511, 512, 513, 514, 515, 517, 518, 519, 520, 522, 523, 539, 541, 543, 547, 548, 556, 560, 561, 562, 563, 564, 565, 567, 568, 569, 570, 572, 573], "volum": 7, "region": 7, "contain": [7, 35, 36, 37, 47, 88, 89, 119, 120, 145, 146, 158, 159, 235, 236, 281, 282, 325, 326, 385, 386, 445, 446, 500, 501, 550, 551], "method": [7, 8, 82, 83, 109, 110, 140, 141, 155, 156, 219, 220, 269, 270, 313, 314, 364, 365, 431, 432, 488, 489, 539, 540], "inherit": [7, 82, 109, 140, 155, 219, 269, 313, 364, 431, 488, 539], "convert": [8, 52, 64, 65, 66, 67, 71, 83, 98, 99, 100, 102, 103, 104, 105, 106, 107, 110, 130, 131, 132, 133, 134, 135, 136, 137, 138, 141, 152, 153, 156, 164, 165, 174, 175, 176, 181, 182, 183, 184, 185, 186, 187, 189, 193, 194, 197, 198, 200, 202, 203, 204, 205, 208, 211, 212, 213, 214, 215, 218, 220, 256, 257, 259, 260, 261, 270, 300, 301, 303, 304, 305, 314, 349, 350, 351, 352, 353, 354, 356, 357, 358, 365, 418, 419, 421, 422, 423, 432, 473, 474, 475, 476, 477, 478, 480, 481, 482, 489, 524, 525, 526, 527, 528, 529, 531, 532, 533, 540, 574, 575, 576, 577, 578, 579, 581, 582, 583, 593], "instanc": [8, 36, 37, 83, 88, 89, 110, 119, 120, 141, 145, 146, 156, 158, 159, 220, 235, 236, 270, 281, 282, 314, 325, 326, 365, 385, 386, 432, 445, 446, 489, 500, 501, 540, 550, 551], "string": [8, 37, 65, 83, 89, 105, 110, 120, 133, 141, 146, 153, 156, 159, 165, 220, 236, 257, 270, 282, 301, 314, 326, 351, 365, 386, 419, 432, 446, 475, 489, 501, 526, 540, 551, 576, 625], "thi": [8, 14, 36, 37, 53, 55, 57, 72, 75, 78, 83, 84, 88, 89, 95, 96, 101, 108, 110, 113, 114, 115, 119, 120, 126, 127, 139, 141, 142, 145, 146, 149, 150, 154, 156, 157, 158, 159, 161, 162, 166, 220, 235, 236, 242, 249, 251, 263, 264, 266, 268, 270, 281, 282, 293, 295, 308, 310, 312, 314, 325, 326, 343, 345, 359, 360, 362, 363, 365, 385, 386, 395, 396, 399, 409, 411, 412, 413, 425, 426, 428, 430, 432, 445, 446, 467, 469, 483, 484, 486, 487, 489, 500, 501, 518, 520, 534, 535, 537, 538, 540, 550, 551, 568, 570, 584, 585, 587, 588, 598, 630, 631], "exist": [8, 83, 110, 141, 156, 220, 238, 270, 284, 314, 324, 328, 365, 390, 432, 442, 450, 489, 499, 503, 540, 549, 553], "net": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "compat": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "when": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540, 631], "us": [8, 14, 53, 59, 62, 74, 75, 78, 83, 97, 108, 110, 129, 139, 141, 151, 154, 156, 163, 166, 220, 229, 230, 231, 252, 259, 264, 265, 266, 268, 270, 296, 303, 308, 309, 310, 312, 314, 318, 346, 352, 353, 354, 357, 358, 360, 361, 362, 363, 365, 374, 375, 376, 414, 421, 426, 427, 428, 430, 432, 470, 476, 477, 478, 481, 482, 484, 485, 486, 487, 489, 493, 521, 527, 528, 529, 532, 533, 535, 536, 537, 538, 540, 571, 577, 578, 579, 582, 583, 585, 586, 587, 588, 628, 629, 630], "ironpython": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "implicit": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "usual": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "take": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "place": [8, 22, 83, 110, 141, 156, 220, 270, 307, 314, 365, 432, 489, 540], "cpython": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "kick": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "its": [8, 64, 65, 83, 104, 105, 110, 132, 133, 141, 152, 153, 156, 164, 165, 220, 256, 257, 270, 300, 301, 314, 350, 351, 365, 418, 419, 432, 474, 475, 489, 525, 526, 540, 575, 576], "default": [8, 54, 55, 56, 57, 64, 65, 83, 84, 104, 105, 110, 115, 132, 133, 141, 142, 152, 153, 156, 157, 164, 165, 220, 248, 249, 250, 251, 256, 257, 259, 260, 270, 272, 292, 293, 294, 295, 300, 301, 303, 304, 314, 342, 343, 344, 345, 350, 351, 352, 353, 354, 357, 358, 365, 408, 409, 410, 411, 418, 419, 421, 422, 432, 466, 467, 468, 469, 474, 475, 476, 477, 478, 481, 482, 489, 517, 518, 519, 520, 525, 526, 527, 528, 529, 532, 533, 540, 567, 568, 569, 570, 575, 576, 577, 578, 579, 582, 583], "print": [8, 64, 65, 83, 104, 105, 110, 132, 133, 141, 152, 153, 156, 164, 165, 169, 171, 195, 209, 210, 220, 256, 257, 270, 300, 301, 314, 350, 351, 365, 418, 419, 432, 474, 475, 489, 525, 526, 540, 575, 576, 605, 612, 625], "self": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "gettyp": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "fullnam": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "similar": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540, 628], "overrid": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "object": [8, 12, 36, 37, 64, 65, 78, 83, 84, 88, 89, 104, 105, 108, 110, 115, 119, 120, 132, 133, 139, 141, 142, 145, 146, 152, 153, 154, 156, 157, 158, 159, 164, 165, 166, 219, 220, 235, 236, 256, 257, 268, 269, 270, 281, 282, 300, 301, 312, 314, 325, 326, 349, 350, 351, 352, 353, 363, 365, 385, 386, 388, 418, 419, 430, 432, 445, 446, 448, 473, 474, 475, 476, 477, 487, 489, 500, 501, 524, 525, 526, 527, 528, 538, 539, 540, 550, 551, 574, 575, 576, 577, 578, 588, 628], "fix": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "make": [8, 29, 42, 43, 83, 84, 110, 115, 141, 142, 156, 157, 220, 227, 270, 275, 314, 321, 365, 372, 432, 438, 489, 496, 540, 546, 591], "rhino": [8, 83, 110, 141, 156, 220, 270, 314, 365, 388, 432, 448, 489, 540, 631], "grasshopp": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "displai": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "proper": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "ar": [8, 83, 95, 96, 110, 126, 127, 141, 149, 150, 156, 161, 162, 220, 270, 272, 307, 314, 365, 432, 489, 540, 591, 598, 628], "connect": [8, 19, 79, 80, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540, 591, 630], "panel": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "other": [8, 25, 26, 27, 53, 62, 82, 83, 95, 96, 110, 126, 127, 141, 149, 150, 156, 161, 162, 220, 270, 307, 314, 365, 432, 489, 540, 625, 630], "type": [8, 36, 37, 78, 82, 83, 84, 88, 89, 108, 110, 115, 119, 120, 139, 141, 142, 145, 146, 154, 156, 157, 158, 159, 166, 172, 173, 175, 179, 186, 188, 190, 197, 202, 206, 207, 212, 216, 217, 220, 235, 236, 268, 270, 281, 282, 312, 314, 325, 326, 363, 365, 385, 386, 430, 432, 445, 446, 487, 489, 500, 501, 538, 540, 550, 551, 588, 590, 594, 596, 598, 601, 602, 605], "output": [8, 83, 110, 141, 156, 220, 258, 270, 302, 314, 365, 420, 432, 489, 540], "shape": [9, 13, 40, 45, 51, 52, 58, 60, 63, 66, 68, 69, 70, 82, 109, 140, 155, 589, 600, 628], "return": [9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 139, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 157, 158, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 271, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 285, 287, 289, 290, 291, 292, 293, 294, 295, 296, 299, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 395, 396, 397, 398, 399, 400, 401, 402, 406, 407, 408, 409, 410, 411, 412, 413, 414, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 430, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 567, 568, 569, 570, 571, 572, 573, 574, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588], "comput": [10, 11, 53, 59, 97, 129, 151, 163, 221, 222, 223, 224, 225, 226, 228, 234, 240, 241, 243, 244, 252, 255, 271, 272, 273, 274, 276, 277, 278, 280, 286, 287, 289, 296, 299, 315, 316, 317, 319, 320, 322, 323, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 346, 347, 348, 366, 367, 368, 369, 370, 371, 373, 380, 397, 398, 400, 401, 414, 417, 433, 434, 435, 436, 437, 439, 440, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 470, 471, 472, 490, 491, 492, 494, 495, 497, 498, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 521, 522, 523, 541, 542, 543, 544, 545, 547, 548, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 571, 572, 573], "axi": [10, 54, 55, 174, 175, 176, 221, 225, 248, 249, 271, 273, 292, 293, 315, 319, 342, 343, 366, 370, 408, 409, 433, 436, 466, 467, 488, 490, 493, 494, 517, 518, 541, 544, 567, 568, 589, 614, 628], "align": [10, 221, 225, 271, 273, 315, 319, 366, 370, 433, 436, 490, 494, 541, 544, 589, 614, 628], "bound": [10, 11, 221, 225, 226, 271, 273, 274, 315, 319, 320, 339, 366, 370, 371, 433, 436, 437, 463, 490, 494, 495, 514, 541, 544, 545, 564, 589, 614, 628], "box": [10, 11, 28, 221, 225, 226, 271, 273, 274, 315, 319, 320, 339, 366, 370, 371, 433, 436, 437, 463, 490, 494, 495, 514, 541, 544, 545, 564, 589, 590, 592, 594, 595, 596, 597, 614, 628], "compa": [10, 11, 12, 28, 31, 33, 36, 37, 38, 39, 41, 42, 43, 46, 48, 50, 54, 55, 59, 72, 73, 74, 75, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 97, 100, 101, 102, 106, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 125, 129, 130, 131, 134, 136, 137, 142, 145, 146, 147, 148, 151, 157, 158, 159, 160, 163, 169, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 212, 213, 214, 216, 217, 218, 225, 226, 235, 236, 237, 239, 241, 242, 247, 248, 249, 252, 259, 260, 261, 264, 265, 266, 271, 272, 273, 274, 277, 278, 281, 282, 283, 285, 287, 291, 292, 293, 296, 303, 304, 305, 307, 308, 309, 310, 313, 319, 320, 325, 326, 327, 329, 330, 332, 334, 338, 342, 343, 346, 349, 352, 353, 354, 357, 358, 360, 361, 362, 364, 370, 371, 385, 386, 388, 389, 393, 398, 399, 407, 408, 409, 414, 421, 422, 423, 426, 427, 428, 431, 436, 437, 441, 444, 445, 446, 447, 448, 449, 452, 456, 458, 462, 466, 467, 470, 473, 476, 477, 478, 481, 482, 484, 485, 486, 488, 494, 495, 500, 501, 502, 504, 505, 507, 509, 513, 517, 518, 521, 524, 527, 528, 529, 532, 533, 535, 536, 537, 544, 545, 550, 551, 552, 554, 555, 557, 559, 563, 567, 568, 571, 574, 577, 578, 579, 582, 583, 585, 586, 587, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 631], "orient": [11, 82, 95, 126, 149, 161, 226, 274, 320, 339, 371, 437, 463, 495, 514, 545, 564], "check": [12, 95, 96, 126, 127, 149, 150, 161, 162], "given": [12, 20, 79, 81, 222, 223, 224, 231, 242, 243, 272, 317, 367, 368, 369, 376, 399, 400, 435, 492, 543], "primit": 12, "paramet": [12, 13, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 104, 105, 108, 109, 111, 112, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 132, 133, 139, 140, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 269, 272, 276, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 289, 292, 293, 294, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 313, 315, 317, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 352, 353, 354, 355, 357, 358, 359, 360, 361, 362, 363, 364, 366, 367, 368, 369, 373, 374, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 395, 396, 397, 398, 399, 400, 401, 402, 408, 409, 410, 411, 412, 413, 414, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 430, 431, 433, 435, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 481, 482, 483, 484, 485, 486, 487, 488, 490, 492, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 613, 614, 628], "point": [12, 54, 55, 85, 86, 90, 91, 92, 122, 155, 160, 169, 171, 172, 173, 174, 176, 177, 195, 197, 199, 200, 202, 206, 207, 208, 209, 210, 211, 215, 219, 223, 224, 229, 230, 231, 242, 243, 244, 248, 249, 259, 261, 269, 272, 277, 278, 289, 292, 293, 303, 305, 317, 322, 323, 331, 332, 333, 337, 338, 340, 341, 342, 343, 354, 357, 358, 364, 368, 369, 374, 375, 376, 381, 384, 391, 392, 399, 400, 401, 408, 409, 421, 423, 431, 435, 439, 440, 444, 447, 451, 453, 455, 456, 457, 461, 462, 464, 465, 466, 467, 478, 481, 482, 488, 492, 497, 498, 506, 507, 508, 512, 513, 515, 516, 517, 518, 529, 532, 533, 543, 547, 548, 556, 557, 558, 562, 563, 565, 566, 567, 568, 579, 582, 583, 589, 590, 598, 601, 603, 604, 605, 606, 607, 608, 609, 611, 612, 613, 614, 615, 616, 618, 619, 620, 621, 623, 624, 625, 628, 631], "bool": [12, 48, 59, 60, 64, 65, 82, 95, 96, 97, 104, 105, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 149, 150, 151, 152, 153, 161, 162, 163, 164, 165, 219, 222, 223, 224, 229, 230, 231, 252, 256, 257, 269, 272, 277, 278, 296, 300, 301, 315, 317, 346, 350, 351, 364, 367, 368, 369, 374, 375, 376, 391, 414, 418, 419, 433, 435, 451, 470, 474, 475, 490, 492, 521, 525, 526, 539, 541, 543, 571, 575, 576], "true": [12, 39, 48, 59, 60, 64, 65, 82, 95, 96, 97, 104, 105, 117, 118, 121, 123, 124, 125, 126, 127, 129, 132, 133, 149, 150, 151, 152, 153, 161, 162, 163, 164, 165, 222, 223, 224, 229, 230, 231, 252, 256, 257, 272, 277, 278, 296, 300, 301, 317, 346, 350, 351, 367, 368, 369, 374, 375, 376, 414, 418, 419, 435, 470, 474, 475, 492, 521, 525, 526, 543, 571, 575, 576, 591, 599, 601, 602, 603, 604, 605, 606, 609, 610, 615, 620, 621, 622, 623, 625, 626, 627], "i": [12, 22, 36, 37, 52, 78, 82, 88, 89, 95, 96, 98, 99, 100, 102, 103, 106, 107, 108, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 139, 145, 146, 149, 150, 154, 158, 159, 161, 162, 166, 171, 182, 184, 210, 211, 215, 219, 222, 223, 224, 228, 229, 230, 231, 234, 235, 236, 241, 242, 244, 255, 259, 260, 268, 269, 272, 276, 277, 278, 280, 281, 282, 287, 289, 299, 303, 304, 307, 312, 317, 324, 325, 326, 352, 353, 354, 357, 358, 363, 364, 367, 368, 369, 373, 374, 375, 376, 380, 385, 386, 391, 396, 398, 399, 401, 417, 421, 422, 430, 435, 441, 442, 443, 445, 446, 451, 476, 477, 478, 481, 482, 487, 492, 499, 500, 501, 527, 528, 529, 532, 533, 538, 539, 543, 549, 550, 551, 577, 578, 579, 582, 583, 588, 598, 620, 623, 628, 630, 631], "fals": [12, 34, 59, 64, 65, 95, 96, 97, 104, 105, 111, 112, 126, 127, 129, 132, 133, 149, 150, 151, 152, 153, 161, 162, 163, 164, 165, 222, 223, 224, 229, 230, 231, 252, 256, 257, 272, 277, 278, 296, 300, 301, 315, 317, 346, 350, 351, 367, 368, 369, 374, 375, 376, 391, 414, 418, 419, 433, 435, 451, 470, 474, 475, 490, 492, 521, 525, 526, 541, 543, 571, 575, 576, 590, 591, 592, 593, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 611, 612, 615, 616, 625], "otherwis": [12, 95, 96, 126, 127, 149, 150, 161, 162, 630], "plane": [13, 42, 43, 61, 76, 77, 121, 134, 202, 203, 204, 205, 242, 329, 334, 399, 452, 458, 504, 509, 554, 559, 589, 599, 600, 628], "gener": [13, 53, 181, 219, 242, 269, 399, 441, 539], "line": [13, 82, 90, 106, 197, 198, 333, 387, 457, 508, 558, 589, 613, 614, 628], "slice": [13, 76, 77, 589, 600, 628], "seri": 13, "polylin": [13, 70, 148, 261, 305, 423, 603, 604, 606, 609, 610, 615, 620, 621, 622, 623, 626, 627], "A": [13, 22, 23, 25, 26, 27, 72, 73, 100, 102, 106, 117, 118, 121, 123, 124, 125, 176, 181, 182, 183, 184, 328, 349, 352, 353, 388, 448, 450, 473, 476, 477, 503, 524, 527, 528, 553, 574, 577, 578, 594, 630], "per": 13, "deep": 14, "nativ": [14, 64, 65, 104, 105, 132, 133, 152, 153, 164, 165, 256, 257, 300, 301, 350, 351, 418, 419, 448, 474, 475, 525, 526, 575, 576], "occ": [14, 40, 45, 82, 109, 140, 155, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 216, 217, 218, 238, 284, 313, 324, 328, 364, 390, 431, 442, 450, 488, 499, 503, 549, 553, 629], "mechan": 14, "remov": [15, 16, 17, 18], "all": [15, 16, 17, 18, 307, 630], "unus": [15, 16, 17, 18], "identifi": [19, 20, 21, 79, 80, 81], "an": [19, 21, 29, 36, 37, 40, 45, 64, 65, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 102, 104, 105, 108, 109, 111, 112, 115, 119, 120, 132, 133, 139, 140, 142, 145, 146, 152, 153, 154, 155, 157, 158, 159, 164, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 196, 197, 198, 199, 200, 201, 202, 203, 206, 207, 208, 211, 212, 213, 214, 216, 217, 218, 223, 227, 235, 236, 237, 238, 256, 257, 258, 268, 269, 275, 281, 282, 283, 284, 300, 301, 302, 312, 313, 321, 324, 325, 326, 327, 328, 350, 351, 363, 368, 372, 381, 383, 385, 386, 389, 390, 393, 418, 419, 420, 430, 438, 441, 442, 445, 446, 449, 450, 474, 475, 487, 496, 499, 500, 501, 502, 503, 525, 526, 538, 546, 549, 550, 551, 552, 553, 575, 576, 588, 593, 628, 630, 631], "parent": [20, 21, 591], "brepedg": [20, 82, 85, 86, 87, 90, 91, 93, 109, 140, 144], "breploop": [20, 109, 140], "radiu": [22, 23, 41, 179, 186, 212], "exclud": [22, 23, 591], "option": [22, 23, 41, 42, 48, 53, 54, 55, 56, 57, 59, 60, 64, 65, 66, 68, 69, 70, 84, 85, 86, 90, 97, 104, 105, 115, 117, 118, 121, 123, 124, 125, 129, 132, 133, 142, 151, 152, 153, 157, 163, 164, 165, 172, 173, 175, 179, 186, 188, 190, 197, 202, 206, 207, 212, 216, 217, 219, 221, 222, 223, 224, 229, 230, 231, 240, 243, 248, 249, 250, 251, 252, 256, 257, 259, 260, 261, 262, 269, 272, 277, 278, 286, 292, 293, 294, 295, 296, 300, 301, 303, 304, 305, 306, 315, 317, 339, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 352, 353, 354, 355, 357, 358, 364, 366, 367, 368, 369, 374, 375, 376, 381, 384, 391, 392, 395, 396, 397, 400, 408, 409, 410, 411, 412, 413, 414, 418, 419, 421, 422, 423, 424, 431, 433, 435, 443, 444, 447, 451, 453, 463, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 481, 482, 490, 492, 514, 516, 517, 518, 519, 520, 521, 522, 523, 525, 526, 527, 528, 529, 530, 532, 533, 539, 541, 543, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583], "from": [22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 39, 40, 42, 43, 44, 45, 46, 47, 48, 50, 59, 82, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 101, 109, 117, 118, 119, 120, 121, 122, 123, 124, 125, 129, 144, 145, 146, 147, 148, 151, 158, 159, 160, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 183, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 216, 217, 218, 235, 236, 237, 238, 239, 243, 252, 281, 282, 283, 284, 285, 296, 324, 325, 326, 327, 328, 329, 330, 346, 364, 381, 382, 383, 385, 386, 387, 388, 389, 390, 391, 392, 393, 400, 414, 431, 441, 442, 443, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 470, 499, 500, 501, 502, 503, 504, 505, 521, 549, 550, 551, 552, 553, 554, 555, 571, 589, 590, 591, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 611, 612, 613, 614, 615, 616, 623, 624, 625, 626, 627, 628, 629, 630, 631], "oper": [22, 23], "modifi": [22, 307, 395, 412, 630], "rais": [22, 36, 37, 88, 89, 98, 99, 100, 102, 103, 106, 107, 119, 120, 145, 146, 158, 159, 182, 184, 211, 215, 228, 234, 235, 236, 241, 244, 255, 260, 276, 280, 281, 282, 287, 289, 299, 304, 325, 326, 373, 380, 385, 386, 398, 401, 417, 422, 443, 445, 446, 500, 501, 550, 551], "brepfilleterror": 22, "If": [22, 36, 37, 59, 64, 65, 88, 89, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 117, 118, 119, 120, 121, 123, 124, 125, 129, 132, 133, 145, 146, 151, 152, 153, 158, 159, 163, 164, 165, 182, 184, 211, 215, 222, 223, 224, 228, 229, 230, 231, 234, 235, 236, 241, 244, 252, 255, 256, 257, 260, 272, 276, 277, 278, 280, 281, 282, 287, 289, 296, 299, 300, 301, 304, 317, 325, 326, 346, 350, 351, 367, 368, 369, 373, 374, 375, 376, 380, 385, 386, 398, 401, 414, 417, 418, 419, 422, 435, 443, 445, 446, 470, 474, 475, 492, 500, 501, 521, 525, 526, 543, 550, 551, 571, 575, 576], "could": 22, "complet": 22, "construct": [23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 44, 45, 46, 48, 49, 50, 77, 78, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 108, 117, 118, 119, 120, 121, 122, 123, 124, 125, 139, 144, 145, 146, 147, 148, 154, 158, 159, 160, 166, 167, 168, 169, 170, 171, 172, 173, 177, 178, 179, 180, 188, 191, 192, 195, 196, 199, 201, 206, 207, 209, 210, 216, 217, 235, 236, 238, 268, 281, 282, 284, 312, 324, 325, 326, 328, 329, 363, 381, 382, 383, 384, 385, 386, 387, 388, 390, 391, 392, 430, 431, 441, 442, 443, 444, 445, 446, 447, 448, 450, 451, 452, 453, 487, 499, 500, 501, 503, 504, 538, 549, 550, 551, 553, 554, 588, 593], "copi": [23, 55, 57, 73, 75, 77, 245, 247, 249, 251, 264, 266, 291, 293, 295, 308, 310, 343, 345, 360, 362, 402, 407, 409, 411, 413, 426, 428, 441, 467, 469, 484, 486, 518, 520, 535, 537, 568, 570, 585, 587, 630], "shell": [24, 29, 52, 181, 182, 184], "classmethod": [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 78, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 108, 117, 118, 119, 120, 121, 122, 123, 124, 125, 139, 144, 145, 146, 147, 148, 154, 158, 159, 160, 166, 235, 236, 237, 238, 239, 268, 281, 282, 283, 284, 285, 312, 324, 325, 326, 327, 328, 329, 330, 363, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 430, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 487, 499, 500, 501, 502, 503, 504, 505, 538, 549, 550, 551, 552, 553, 554, 555, 588], "b": [25, 26, 27, 53, 62, 91, 93, 178, 594], "boolean": [25, 26, 27, 589, 600, 628], "differ": [25, 631], "two": [25, 26, 27, 69, 91, 92, 93, 94, 95, 96, 126, 127, 149, 150, 161, 162, 170, 171, 192, 210, 222, 367, 443, 589, 600, 628], "intersect": [26, 61, 332, 333, 334, 456, 457, 458, 507, 508, 509, 557, 558, 559, 589, 614, 628], "union": 27, "form": 29, "open": [29, 628], "close": [29, 34, 41, 219, 260, 269, 304, 422], "one": [30, 167, 168, 169, 195, 209], "compound": 30, "out": [30, 630], "multipl": [30, 364, 391, 395, 396, 431, 451, 603, 604, 609], "individu": [30, 58, 591], "cone": [31, 117, 130, 185], "set": [32, 38, 44, 384], "nurbscurv": [32, 178, 364, 388, 393, 598, 601, 602, 603, 605, 606, 607, 608, 609, 610, 611, 612, 617, 618, 619, 628, 631], "cylind": [33, 118, 131, 186, 187, 592], "profil": [34, 49], "vector": [34, 54, 55, 74, 75, 172, 173, 174, 175, 176, 188, 189, 199, 202, 216, 217, 218, 228, 241, 242, 248, 249, 255, 265, 266, 276, 287, 292, 293, 299, 309, 310, 313, 322, 342, 343, 361, 362, 364, 373, 398, 399, 408, 409, 417, 427, 428, 439, 441, 466, 467, 485, 486, 488, 497, 517, 518, 536, 537, 547, 567, 568, 586, 587, 598, 617, 618, 623], "cap_end": 34, "extrud": [34, 41], "along": [34, 41, 49, 243, 400], "direct": [34, 48, 56, 57, 66, 188, 189, 242, 250, 251, 294, 295, 313, 318, 341, 344, 345, 347, 348, 352, 353, 354, 357, 358, 399, 410, 411, 431, 447, 451, 465, 468, 469, 471, 472, 476, 477, 478, 481, 482, 488, 516, 519, 520, 522, 523, 527, 528, 529, 532, 533, 539, 566, 569, 570, 572, 573, 577, 578, 579, 582, 583], "refer": [34, 49], "http": [34, 49, 628, 629], "dev": [34, 49, 628, 629], "opencascad": [34, 49, 628, 631], "org": [34, 49, 628], "doc": [34, 49, 628], "occt": [34, 49], "7": [34, 49, 431, 591, 592, 604, 618, 621], "4": [34, 49, 177, 211, 364, 431, 590, 592, 595, 596, 597, 603, 604, 609, 611, 612, 615, 617, 619, 621, 624, 625, 627, 628], "0": [34, 42, 49, 53, 59, 69, 70, 71, 97, 129, 138, 151, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 186, 188, 189, 190, 191, 192, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 221, 240, 243, 252, 296, 315, 339, 346, 364, 366, 384, 395, 396, 397, 400, 412, 413, 414, 431, 433, 444, 463, 470, 490, 514, 521, 541, 564, 571, 590, 591, 592, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 631], "refman": [34, 49, 628], "html": [34, 49, 628], "class_b_rep_prim_a_p_i___make_pr": 34, "filenam": [35, 47], "conctruct": [35, 47], "data": [35, 36, 37, 47, 59, 64, 65, 78, 84, 88, 89, 97, 104, 105, 108, 115, 119, 120, 129, 132, 133, 139, 142, 145, 146, 151, 152, 153, 154, 155, 157, 158, 159, 163, 164, 165, 166, 181, 182, 184, 235, 236, 252, 256, 257, 268, 281, 282, 296, 300, 301, 312, 325, 326, 346, 350, 351, 363, 385, 386, 414, 418, 419, 430, 445, 446, 470, 474, 475, 487, 500, 501, 521, 525, 526, 538, 550, 551, 571, 575, 576, 588, 589, 614, 628], "ig": [35, 63], "file": [35, 36, 47, 63, 64, 68, 69, 88, 104, 119, 132, 145, 152, 158, 164, 235, 237, 239, 256, 258, 262, 281, 283, 285, 300, 302, 306, 325, 327, 330, 350, 355, 385, 389, 393, 418, 420, 424, 445, 449, 454, 474, 479, 500, 502, 505, 525, 530, 550, 552, 555, 575, 580, 591, 593, 630], "str": [35, 36, 37, 47, 59, 63, 64, 65, 68, 69, 88, 89, 97, 104, 105, 119, 120, 129, 132, 133, 145, 146, 151, 152, 153, 158, 159, 163, 164, 165, 219, 235, 236, 237, 239, 252, 256, 257, 258, 262, 269, 281, 282, 283, 285, 296, 300, 301, 302, 306, 325, 326, 327, 330, 346, 350, 351, 355, 364, 385, 386, 389, 393, 414, 418, 419, 420, 424, 431, 445, 446, 449, 454, 470, 474, 475, 479, 500, 501, 502, 505, 521, 525, 526, 530, 539, 550, 551, 552, 555, 571, 575, 576, 580], "filepath": [36, 63, 64, 68, 69, 88, 104, 119, 132, 145, 152, 158, 164, 235, 237, 239, 256, 258, 262, 281, 283, 285, 300, 302, 306, 325, 327, 330, 350, 355, 385, 389, 393, 418, 420, 424, 445, 449, 454, 474, 479, 500, 502, 505, 525, 530, 550, 552, 555, 575, 580, 591], "json": [36, 37, 64, 65, 88, 89, 104, 105, 119, 120, 132, 133, 145, 146, 152, 153, 158, 159, 164, 165, 235, 236, 256, 257, 281, 282, 300, 301, 325, 326, 350, 351, 385, 386, 418, 419, 445, 446, 474, 475, 500, 501, 525, 526, 550, 551, 575, 576, 589, 614, 628], "path": [36, 41, 49, 64, 88, 104, 119, 132, 145, 152, 158, 164, 235, 237, 239, 256, 258, 281, 283, 285, 300, 302, 325, 327, 330, 350, 385, 389, 393, 418, 420, 445, 449, 474, 500, 502, 505, 525, 550, 552, 555, 575, 591], "ha": [36, 37, 88, 89, 119, 120, 145, 146, 158, 159, 235, 236, 281, 282, 325, 326, 385, 386, 445, 446, 500, 501, 550, 551], "correct": [36, 37, 88, 89, 119, 120, 145, 146, 158, 159, 235, 236, 281, 282, 325, 326, 385, 386, 445, 446, 500, 501, 550, 551], "schema": [36, 37, 68, 78, 88, 89, 108, 119, 120, 139, 145, 146, 154, 158, 159, 166, 235, 236, 262, 268, 281, 282, 306, 312, 325, 326, 355, 363, 385, 386, 424, 430, 445, 446, 479, 487, 500, 501, 530, 538, 550, 551, 580, 588], "typeerror": [36, 37, 88, 89, 119, 120, 145, 146, 158, 159, 235, 236, 281, 282, 325, 326, 385, 386, 445, 446, 500, 501, 550, 551], "loft": 38, "mesh": [39, 53, 59, 66, 69, 70, 71, 97, 129, 151, 163, 181, 182, 184, 252, 296, 346, 352, 356, 414, 447, 470, 476, 480, 521, 527, 531, 571, 577, 581, 589, 600, 628], "solid": [39, 52, 591], "topods_shap": [40, 45], "thick": 41, "pipe": 41, "should": [41, 272, 313, 488, 598], "smaller": 41, "than": [41, 59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "domain_u": [42, 48, 121, 124, 539, 596, 599, 616, 625, 627], "1": [42, 59, 70, 97, 129, 138, 151, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 183, 185, 186, 187, 188, 189, 190, 191, 192, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 243, 252, 296, 346, 364, 400, 414, 431, 470, 521, 571, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 604, 606, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628], "domain_v": [42, 48, 121, 124, 539, 596, 599, 616, 625, 627], "tupl": [42, 48, 53, 70, 85, 86, 90, 121, 124, 174, 176, 219, 222, 223, 224, 229, 230, 231, 259, 269, 272, 277, 278, 303, 317, 352, 353, 354, 357, 358, 367, 368, 369, 374, 375, 376, 421, 435, 476, 477, 478, 481, 482, 492, 527, 528, 529, 532, 533, 539, 543, 577, 578, 579, 582, 583], "polygon": [44, 67, 122, 135, 147, 200, 260, 304, 422], "sphere": [46, 123, 136, 212, 213], "step": [47, 68, 591], "precis": [48, 124, 138, 221, 229, 230, 231, 240, 243, 286, 315, 339, 366, 374, 375, 376, 384, 395, 396, 397, 400, 412, 413, 433, 444, 463, 490, 514, 541, 564], "1e": [48, 124, 229, 230, 231, 374, 375, 376], "06": [48, 124, 229, 230, 231, 374, 375, 376], "insid": [48, 117, 118, 121, 123, 124, 125], "domain": [48, 219, 228, 234, 241, 244, 255, 259, 269, 276, 280, 287, 289, 299, 303, 341, 347, 348, 352, 353, 354, 357, 358, 373, 380, 398, 401, 417, 421, 465, 471, 472, 476, 477, 478, 481, 482, 516, 522, 523, 527, 528, 529, 532, 533, 539, 566, 572, 573, 577, 578, 579, 582, 583, 612], "u": [48, 66, 121, 124, 322, 323, 331, 335, 337, 338, 340, 341, 347, 352, 353, 354, 357, 358, 412, 413, 431, 439, 440, 447, 451, 455, 459, 461, 462, 464, 465, 471, 476, 477, 478, 481, 482, 497, 498, 506, 510, 512, 513, 515, 516, 522, 527, 528, 529, 532, 533, 539, 547, 548, 556, 560, 562, 563, 565, 566, 572, 577, 578, 579, 582, 583, 605, 612, 616, 620, 624, 625, 626, 627], "v": [48, 66, 121, 124, 313, 322, 323, 331, 336, 337, 338, 340, 341, 348, 352, 353, 354, 357, 358, 412, 413, 431, 439, 440, 447, 451, 455, 460, 461, 462, 464, 465, 472, 476, 477, 478, 481, 482, 497, 498, 506, 511, 512, 513, 515, 516, 523, 527, 528, 529, 532, 533, 539, 547, 548, 556, 561, 562, 563, 565, 566, 573, 577, 578, 579, 582, 583, 605, 612, 616, 620, 624, 625, 626, 627], "discretis": [48, 69, 70, 229, 230, 231, 259, 277, 278, 303, 358, 374, 375, 376, 421, 482, 533, 583], "trim": [48, 589, 600, 628], "whether": [48, 630], "keep": [48, 598], "outsid": 48, "sweep": 49, "class_b_rep_prim_a_p_i___make_sweep": 49, "class_b_rep_offset_a_p_i___make_pip": 49, "class_b_rep_offset_a_p_i___make_pipe_shel": 49, "toru": [50, 124, 125, 137, 214], "current": [52, 84, 115, 142, 157, 227, 275, 318, 321, 372, 438, 493, 496, 546, 631], "deflect": 53, "001": [53, 69, 71, 138, 240, 384, 397, 412, 413, 444], "toler": [53, 395, 396, 592], "between": [53, 69, 70, 222, 224, 367, 369, 412, 413, 441, 443, 589, 600, 628], "anoth": [53, 62, 95, 96, 126, 127, 149, 150, 161, 162, 222, 224, 367, 369, 395, 396], "rep": [53, 62], "allow": [53, 69, 70, 631], "proxim": 53, "detect": 53, "calcul": [53, 229, 230, 231, 286, 374, 375, 376], "angl": [54, 55, 69, 248, 249, 292, 293, 342, 343, 408, 409, 466, 467, 517, 518, 567, 568], "radian": [54, 55, 248, 249, 292, 293, 342, 343, 408, 409, 466, 467, 517, 518, 567, 568, 595, 596, 597, 615, 623], "z": [54, 55, 56, 57, 59, 97, 129, 151, 163, 169, 171, 172, 173, 174, 175, 188, 195, 197, 199, 202, 206, 207, 209, 210, 216, 217, 248, 249, 250, 251, 252, 292, 293, 294, 295, 296, 342, 343, 344, 345, 346, 408, 409, 410, 411, 414, 466, 467, 468, 469, 470, 517, 518, 519, 520, 521, 567, 568, 569, 570, 571, 620, 626], "origin": [54, 55, 248, 249, 292, 293, 342, 343, 408, 409, 466, 467, 517, 518, 567, 568], "translat": [54, 55, 56, 57, 183, 248, 249, 250, 251, 264, 292, 293, 294, 295, 307, 308, 342, 343, 344, 345, 360, 408, 409, 410, 411, 426, 441, 466, 467, 468, 469, 484, 517, 518, 519, 520, 535, 567, 568, 569, 570, 585, 594, 615], "scale": [54, 55, 74, 75, 248, 249, 264, 265, 266, 292, 293, 308, 309, 310, 342, 343, 360, 361, 362, 408, 409, 426, 427, 428, 466, 467, 484, 485, 486, 517, 518, 535, 536, 537, 567, 568, 585, 586, 587, 623], "transform": [54, 55, 56, 57, 74, 75, 183, 248, 249, 250, 251, 265, 266, 292, 293, 294, 295, 309, 310, 342, 343, 344, 345, 361, 362, 408, 409, 410, 411, 427, 428, 466, 467, 468, 469, 485, 486, 517, 518, 519, 520, 536, 537, 567, 568, 569, 570, 586, 587, 595, 596, 597, 615, 623], "x": [56, 57, 169, 171, 172, 173, 174, 175, 188, 195, 197, 199, 202, 206, 207, 209, 210, 216, 217, 250, 251, 294, 295, 344, 345, 410, 411, 468, 469, 519, 520, 569, 570, 623], "y": [56, 57, 169, 171, 172, 173, 174, 175, 188, 195, 197, 199, 202, 206, 207, 209, 210, 216, 217, 250, 251, 294, 295, 344, 345, 410, 411, 468, 469, 519, 520, 569, 570], "factor": [56, 57, 250, 251, 294, 295, 344, 345, 410, 411, 468, 469, 519, 520, 569, 570], "rotat": [56, 57, 74, 75, 250, 251, 264, 265, 266, 294, 295, 307, 308, 309, 310, 344, 345, 360, 361, 362, 410, 411, 426, 427, 428, 468, 469, 484, 485, 486, 519, 520, 535, 536, 537, 569, 570, 585, 586, 587, 595, 596, 597, 615, 623], "togeth": 58, "part": 58, "as_str": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "hash": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "comparison": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571, 589, 613, 628], "dure": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "version": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571, 629], "control": [59, 97, 129, 151, 163, 252, 296, 346, 364, 381, 384, 391, 392, 414, 431, 447, 451, 453, 470, 521, 571, 589, 613, 614, 628], "algorithm": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "digest": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "hexadecim": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "format": [59, 68, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "rather": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "byte": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "exampl": [59, 97, 129, 151, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 183, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 252, 296, 313, 346, 364, 414, 431, 470, 488, 521, 571, 628, 629, 631], "datastructur": [59, 97, 129, 151, 163, 252, 296, 346, 352, 353, 414, 470, 476, 477, 521, 527, 528, 571, 577, 578, 593], "import": [59, 97, 129, 151, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 183, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 216, 217, 218, 252, 296, 346, 364, 414, 431, 470, 521, 571, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 631], "from_obj": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571, 593], "get": [59, 97, 101, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571, 593, 629], "obj": [59, 97, 129, 151, 163, 237, 252, 258, 283, 296, 302, 327, 346, 389, 414, 420, 449, 470, 502, 521, 552, 571, 593], "v1": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "v2": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "vertex_attribut": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "vertex_sampl": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "v3": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "merge_edg": 60, "merge_fac": 60, "merg": [60, 630], "colinear": 60, "coplanar": 60, "same": [60, 95, 96, 126, 127, 149, 150, 161, 162, 629, 631], "underli": [60, 66, 67, 82, 98, 99, 100, 102, 103, 106, 107, 135, 138, 155, 200, 211, 628], "result": [61, 243, 381, 396, 400, 592, 596], "doe": 61, "splitter": [62, 596], "write": [63, 68, 69, 258, 262, 302, 306, 355, 420, 424, 479, 530, 580], "locat": [63, 68, 69, 95, 96, 126, 127, 149, 150, 161, 162, 199, 341, 465, 488, 516, 566], "pretti": [64, 65, 104, 105, 132, 133, 152, 153, 164, 165, 256, 257, 300, 301, 350, 351, 418, 419, 474, 475, 525, 526, 575, 576, 625], "save": [64, 65, 104, 105, 132, 133, 152, 153, 164, 165, 256, 257, 300, 301, 350, 351, 418, 419, 474, 475, 525, 526, 575, 576], "16": [66, 260, 304, 352, 353, 354, 357, 358, 422, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "int": [66, 168, 219, 229, 230, 259, 260, 261, 269, 277, 303, 304, 305, 341, 347, 348, 352, 353, 354, 357, 358, 364, 374, 375, 381, 391, 392, 421, 422, 423, 431, 447, 451, 453, 465, 471, 472, 476, 477, 478, 481, 482, 516, 522, 523, 527, 528, 529, 532, 533, 539, 566, 572, 573, 577, 578, 579, 582, 583], "number": [66, 167, 168, 170, 211, 215, 229, 230, 259, 260, 261, 277, 303, 304, 305, 347, 348, 352, 353, 354, 357, 358, 374, 375, 381, 421, 422, 423, 447, 471, 472, 476, 477, 478, 481, 482, 522, 523, 527, 528, 529, 532, 533, 572, 573, 577, 578, 579, 582, 583], "everi": [66, 242, 399], "simpl": 67, "without": [67, 135, 364, 391, 431, 451, 630, 631], "ap203": [68, 262, 306, 355, 424, 479, 530, 580], "unit": 68, "mm": 68, "linear_deflect": [69, 70, 71], "angular_deflect": [69, 70], "5": [69, 138, 190, 191, 196, 214, 431, 590, 591, 594, 595, 597, 598, 599, 603, 604, 611, 612, 615, 617, 618, 619, 620, 621, 624, 625, 627], "stl": 69, "deviat": [69, 70], "maximum": [69, 121, 124], "adjac": [69, 113], "facet": 69, "creat": [70, 629], "tessel": 70, "visualis": [70, 592, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629], "distanc": [70, 222, 224, 242, 243, 367, 369, 399, 400, 601], "curvatur": [70, 228, 276, 322, 331, 337, 373, 439, 455, 461, 497, 506, 512, 547, 556, 562], "view": 71, "matrix": [72, 73, 183], "valid": [78, 108, 128, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588, 591], "against": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "": [78, 101, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "raw": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "can": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588, 629], "__from_data__": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "ani": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588, 591, 630], "vertex": [79, 80, 81, 82, 93, 155, 160, 161, 162, 358, 482, 533, 583, 590, 591], "neighbour": 81, "occ_edg": 82, "repres": [82, 109, 140, 155, 176, 219, 269, 313, 364, 431, 488, 539], "topods_edg": 82, "occcurv": [82, 86, 313, 316, 332, 335, 336, 364, 390, 399, 402, 434, 456, 459, 460, 488, 491, 507, 510, 511, 542, 557, 560, 561], "adaptor": [82, 109], "first_vertex": 82, "brepvertex": [82, 85, 86, 90, 92, 93, 94, 109, 140, 155, 160], "first": [82, 91, 93, 631], "forward": 82, "is_lin": 82, "is_circl": 82, "circl": [82, 85, 100, 179, 180, 382, 589, 598, 599, 613, 617, 628], "is_ellips": 82, "ellips": [82, 87, 102, 190, 191, 383], "is_hyperbola": 82, "hyperbola": [82, 103, 196], "is_parabola": 82, "parabola": [82, 107, 201], "is_bezi": 82, "bezier": [82, 98, 177, 603, 604, 607], "is_bsplin": 82, "bspline": [82, 99, 178], "is_oth": 82, "last_vertex": 82, "revers": [82, 111, 112, 599], "topolog": [82, 155], "curvetyp": 82, "cl": [84, 115, 142, 157, 172, 173, 175, 179, 186, 188, 190, 197, 202, 206, 207, 212, 216, 217], "independ": [84, 115, 142, 157, 227, 275, 321, 372, 438, 496, 546], "param": [85, 86, 90, 605], "start": [85, 86, 90, 219, 223, 243, 269, 368, 400, 412, 413], "end": [85, 86, 90, 219, 223, 231, 269, 368, 376, 412, 413], "curve2d": 86, "occcurve2d": [86, 232, 378], "2d": [86, 206, 216, 269, 444, 598], "occsurfac": [86, 124, 232, 245, 313, 321, 324, 328, 329, 378, 402, 431, 442, 450, 452, 488, 496, 499, 503, 504], "second": [91, 93, 631], "equal": [95, 126, 149, 161, 229, 230, 277, 374, 375], "thei": [95, 96, 126, 127, 149, 150, 161, 162, 598], "have": [95, 96, 126, 127, 149, 150, 161, 162, 307, 313], "valueerror": [98, 99, 100, 102, 103, 106, 107, 182, 184, 211, 215, 228, 234, 241, 244, 255, 260, 276, 280, 287, 289, 299, 304, 373, 380, 398, 401, 417, 422, 443], "occ_fac": 109, "brepfac": [109, 113], "topod": [109, 140, 155], "topods_fac": [109, 200, 211, 215, 324, 442, 499, 549], "geomadaptor_surfac": 109, "add": [111, 112, 589, 590, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628], "inner": [111, 112], "addit": [111, 112, 222, 223, 224, 229, 230, 231, 272, 277, 278, 317, 367, 368, 369, 374, 375, 376, 435, 492, 543], "try": [116, 138, 143], "minimum": [121, 124, 222, 224, 367, 369], "verifi": 128, "continuity_u": 138, "continuity_v": 138, "maxdegree_u": 138, "maxdegree_v": 138, "maxsegments_u": 138, "maxsegments_v": 138, "nurb": [138, 178, 238, 284, 364, 381, 382, 383, 384, 387, 388, 390, 391, 392, 393, 431, 441, 443, 444, 447, 448, 451, 453, 454, 628, 631], "occ_wir": 140, "topods_wir": 140, "wire": 140, "collect": [144, 444, 607, 608, 616, 623, 627], "occ_vertex": 155, "topods_vertex": 155, "structur": [155, 181, 182, 184], "dimension": [167, 168, 169, 170, 171, 192, 195, 209, 210], "arrai": [167, 168, 169, 170, 171, 177, 192, 195, 209, 210], "tcolstd_array1ofr": 167, "array1_from_integers1": [167, 628], "array2_from_floats2": [167, 192, 628], "floats1": 167, "2": [167, 168, 169, 170, 171, 177, 183, 192, 195, 201, 209, 210, 269, 431, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 602, 603, 605, 611, 612, 613, 614, 615, 616, 617, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628], "array1": [167, 168, 169, 209], "core": [167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 179, 186, 188, 190, 192, 195, 196, 197, 199, 201, 202, 206, 207, 209, 210, 212, 216, 217, 629], "tcolstd": [167, 168, 170, 192], "integ": 168, "tcolstd_array1ofinteg": 168, "array1_from_floats1": [168, 170, 628], "integers1": 168, "tcolgp_array1ofpnt": [169, 177, 209], "harray1_from_points1": [169, 628], "points1_from_array1": [169, 628], "point_to_compa": [169, 206, 209, 210, 628], "points1": [169, 195, 209, 601, 611, 619], "tcolgp": [169, 171, 177, 195, 209, 210], "item": [169, 195], "gp_pnt": [169, 172, 173, 174, 175, 177, 179, 186, 190, 195, 196, 197, 201, 202, 207, 208, 209, 210, 212], "real": [170, 192], "tcolstd_array2ofr": [170, 192], "floats2": [170, 192], "array2": [170, 171, 192, 210], "tcolgp_array2ofpnt": [171, 210], "points2_from_array2": [171, 628], "point_to_occ": [171, 195, 628], "itertool": [171, 192, 210, 605, 616, 620, 623, 627], "product": [171, 192, 210, 242, 399], "points2": [171, 210, 611, 619], "row": [171, 615, 620, 621, 622, 623, 626, 627], "rang": [171, 210, 623, 626], "lowerrow": 171, "upperrow": 171, "col": [171, 615, 620, 621, 622, 623, 626, 627], "lowercol": 171, "uppercol": 171, "j": [171, 210, 620], "valu": [171, 241, 287, 398], "posit": [172, 173, 242, 399, 590, 591, 592, 593, 594, 595, 596, 597, 617, 618], "gp_ax2": [172, 177, 179, 190, 193, 196, 201, 204], "ax3_to_compa": [172, 628], "gp": [172, 173, 174, 175, 177, 179, 186, 188, 190, 196, 197, 201, 202, 206, 207, 209, 210, 212, 216, 217], "gp_dir": [172, 173, 174, 175, 177, 179, 186, 188, 189, 190, 196, 197, 201, 202, 212], "ax2": [172, 179, 190, 196, 201], "xaxi": [172, 173, 199], "yaxi": [172, 173, 199, 623], "gp_ax3": [173, 186, 194, 205, 212], "ax2_to_compa": [173, 628], "ax3": [173, 186, 212], "gp_ax1": [174, 175, 176], "axis_to_compas_vector": [174, 188, 216, 217, 628], "direction_to_compa": [175, 216, 217, 628], "vector_to_compa": [175, 188, 216, 628], "vector2d_to_compa": [175, 188, 217, 628], "line_to_occ": [176, 197, 628], "geom_beziercurv": 177, "gp_parab": [177, 201], "geom": 177, "setvalu": [177, 192, 209, 210], "3": [177, 183, 192, 209, 210, 215, 364, 392, 431, 453, 594, 596, 598, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 631], "spline": 178, "geom_bsplinecurv": [178, 628], "circ": 179, "gp_circ": [179, 180], "ellipse_to_compa": [179, 628], "cicrl": 180, "ellipse_to_occ": [180, 628], "topods_shel": [181, 182, 184], "compas_trimesh_to_occ_shel": [181, 182, 628], "compas_quadmesh_to_occ_shel": [181, 184, 628], "quad": [182, 211, 354, 478, 529, 579], "input": 182, "compas_mesh_to_occ_shel": [182, 184, 628], "gp_trsf": 183, "from_vector": [183, 615], "triangl": [184, 215, 356, 357, 480, 481, 531, 532, 581, 582], "gp_cone": 185, "sphere_to_occ": [185, 187, 214, 628], "cylinder_to_occ": [185, 213, 214, 628], "torus_to_occ": [185, 187, 213, 628], "gp_cylind": [186, 187], "compas_sphere_from_occ_spher": 186, "height": 186, "cone_to_occ": [187, 213, 214, 628], "vector_to_occ": [189, 628], "elip": 190, "construc": 190, "gp_elip": [190, 191], "circle_to_compa": [190, 628], "major": [190, 196], "minor": [190, 196], "circle_to_occ": [191, 628], "right": [193, 194, 204, 205, 630], "hand": [193, 194, 204, 205], "frame_to_occ_ax3": [193, 628], "worldxi": [193, 194, 592, 595, 596, 597, 599], "frame_to_occ_ax2": [194, 628], "horizont": 195, "tcolgp_harray1ofpnt": 195, "array1_from_points1": [195, 209, 628], "harray1": 195, "hypr": 196, "gp_hypr": 196, "lin": 197, "gp_lin": [197, 198], "axis_to_occ": [198, 628], "toploc_loc": 199, "toploc": 199, "ngon": 200, "best": [200, 631], "fit": [200, 444, 630], "sequenc": 200, "defin": [200, 211, 215, 242, 399, 628], "triangle_to_fac": [200, 211, 628], "quad_to_fac": [200, 215, 628], "parab": 201, "focal": 201, "pln": 202, "gp_pln": [202, 203], "plane_to_occ": [202, 204, 205, 628], "normal": [202, 241, 242, 287, 338, 398, 399, 462, 513, 563], "plane_to_occ_ax2": [203, 205, 628], "plane_to_occ_ax3": [203, 204, 628], "gp_pnt2d": 206, "point2d_to_compa": [207, 628], "array2_from_points2": [210, 628], "len": 210, "rule": 211, "four": [211, 443], "ngon_to_fac": [211, 215, 628], "gp_sphere": [212, 213], "cylinder_to_compa": [212, 628], "gp_toru": 214, "three": [215, 443], "gp_vec2d": 216, "gp_vec": [217, 218], "direction_to_occ": [218, 628], "name": [219, 269, 364, 431, 539], "dimens": [219, 269], "space": [219, 232, 269, 313, 341, 347, 348, 378, 465, 471, 472, 516, 522, 523, 566, 572, 573, 589, 614, 628], "is_clos": [219, 269], "flag": [219, 269, 364, 391, 451, 539], "indic": [219, 269, 358, 364, 391, 451, 482, 533, 539, 583], "is_period": [219, 269, 391], "period": [219, 269, 391, 451, 539], "return_dist": [222, 224, 367, 369, 601], "where": [222, 224, 367, 369], "closest": [222, 223, 224, 272, 317, 367, 368, 369, 435, 492, 543, 589, 613, 628], "occnurbscurv": [222, 224, 443, 604, 631], "find": [222, 224, 367, 369, 589, 600, 628], "lowest": [222, 367], "return_paramet": [223, 272, 317, 368, 435, 492, 543, 602], "orthogon": [223, 368], "project": [223, 317, 368, 435, 492, 543, 598], "possibl": [223, 368], "whichev": [223, 368], "closer": [223, 368], "nearest": [223, 317, 368, 435, 492, 543], "correspond": [223, 229, 230, 231, 241, 242, 272, 277, 278, 287, 313, 341, 368, 374, 375, 376, 398, 399, 465, 488, 516, 566], "t": [228, 234, 241, 243, 244, 255, 263, 276, 280, 287, 289, 299, 307, 359, 373, 380, 398, 400, 401, 417, 425, 483, 534, 584, 602, 615], "count": [229, 230, 277, 374, 375], "return_point": [229, 230, 231, 277, 278, 374, 375, 376, 605], "specif": [229, 230, 277, 374, 375], "length": [229, 230, 231, 277, 278, 374, 375, 376, 591, 605], "segment": [229, 230, 231, 277, 278, 374, 375, 376, 589, 605, 613, 628], "divis": [229, 230, 231, 277, 278, 374, 375, 376], "those": [229, 230, 231, 277, 278, 374, 375, 376], "divid": [230, 231, 277, 278, 375, 376, 589, 613, 628], "note": [231, 242, 307, 313, 376, 399, 441], "last": [231, 376], "might": [231, 376], "coincid": [231, 376], "new": [232, 242, 243, 378, 396, 399, 400], "tol": [233, 279, 286, 379, 592], "load": [237, 239, 283, 285, 327, 330, 389, 393, 449, 454, 502, 505, 552, 555, 591], "occ_curv": [238, 284, 390], "bsplinecurv": [238, 284, 364, 390], "geom_curv": [238, 390, 628], "stp": [239, 262, 285, 306, 330, 355, 393, 424, 454, 479, 505, 530, 555, 580, 591], "point_at": [241, 287, 398, 627], "tangent_at": [241, 287, 398], "binormal_at": [241, 287, 398], "frame_at": [241, 287, 398, 616], "curvature_at": [241, 287, 398], "over": [242, 341, 347, 348, 399, 465, 471, 472, 516, 522, 523, 566, 572, 573, 589, 614, 628], "specifi": [242, 278, 399], "At": [242, 399], "ditanc": [242, 399], "cross": [242, 399], "tangent": [242, 255, 299, 399, 417], "requir": [243, 286, 400], "onto": [245, 402], "parametris": [246, 290, 406], "n": [259, 260, 261, 303, 304, 305, 347, 348, 421, 422, 423, 471, 472, 522, 523, 572, 573, 605, 629], "10": [259, 303, 341, 347, 348, 364, 421, 447, 465, 471, 472, 516, 522, 523, 566, 572, 573, 591, 601, 605, 607, 609, 610, 612, 617, 618, 619, 624, 626, 631], "subset": [259, 303, 352, 353, 354, 357, 358, 421, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "which": [259, 303, 352, 353, 354, 357, 358, 421, 441, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583, 628], "case": [259, 303, 352, 353, 354, 357, 358, 421, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "entir": [259, 303, 352, 353, 354, 357, 358, 421, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "side": [260, 304, 422], "100": [261, 305, 423, 620, 626], "ussual": 269, "through": [269, 631], "embed": [269, 324, 442, 499, 549, 598], "alwai": 269, "test": 272, "divide_by_length": 277, "split": [277, 278, 589, 600, 628], "divide_by_count": 278, "geom2d_curv": 284, "limit": [307, 630], "effect": 307, "see": 307, "more": 307, "info": 307, "extrus": [313, 318, 441, 589, 614, 628], "kernel": [313, 364, 431, 488, 628], "infinit": 313, "planar": [313, 488], "optim": [315, 433, 490, 541], "uv": [317, 435, 492, 543, 589, 614, 628], "wich": [324, 442, 499, 549], "occ_surfac": [328, 450, 503, 553], "nubr": [328, 450, 503, 553], "bsplinesurfac": [328, 431, 450, 503, 553], "geom_bsplinesurfac": [328, 450, 503, 553, 628], "gaussian": [331, 455, 506, 556], "isoparametr": [335, 336, 459, 460, 510, 511, 560, 561], "mean": [337, 461, 512, 562], "nu": [341, 352, 353, 354, 357, 358, 447, 465, 476, 477, 478, 481, 482, 516, 527, 528, 529, 532, 533, 566, 577, 578, 579, 582, 583, 620, 626], "nv": [341, 352, 353, 354, 357, 358, 447, 465, 476, 477, 478, 481, 482, 516, 527, 528, 529, 532, 533, 566, 577, 578, 579, 582, 583, 620, 626], "evenli": [341, 347, 348, 465, 471, 472, 516, 522, 523, 566, 572, 573], "size": [341, 465, 516, 566, 616], "grid": [341, 447, 465, 516, 566], "du": [352, 353, 354, 357, 358, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "dv": [352, 353, 354, 357, 358, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "polyhedron": [353, 477, 528, 578], "6": [364, 431, 592, 593, 601, 602, 604, 605, 607, 609, 610, 612, 618, 619, 620, 621, 631], "from_point": [364, 431, 598, 601, 605, 610, 612, 615, 616, 618, 620, 622, 623, 624, 625, 627, 631], "from_paramet": [364, 431, 603, 604, 609, 621], "weight": [364, 391, 431, 451, 603, 604, 609, 621, 625], "knot": [364, 391, 431, 451, 603, 604, 609], "degre": [364, 381, 391, 392, 451, 539, 603, 604, 609], "continu": [364, 395, 396, 539], "is_rat": 364, "ration": 364, "knotsequ": 364, "full": 364, "order": 364, "arc": 381, "pointcount": 381, "interpol": [384, 444, 589, 613, 628], "explicit": [391, 451], "0001": [395, 396], "nurbssurfac": [431, 447, 448, 598, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628], "knots_u": [431, 451, 621], "9": [431, 605, 618, 620, 621], "8": [431, 602, 604, 619, 620, 621], "knots_v": [431, 451, 621], "mults_u": [431, 451, 621], "mults_v": [431, 451, 621], "degree_u": [431, 451, 453, 539, 621], "degree_v": [431, 451, 453, 539, 621], "basi": 441, "infil": [441, 443], "from_fil": [441, 619], "serv": 441, "curve1": [443, 601, 603, 604, 611], "curve2": [443, 603, 604, 611], "curve3": [443, 603, 604], "curve4": [443, 604], "style": [443, 619], "stretch": 443, "contigu": 443, "liter": 443, "coon": 443, "produc": 443, "flattest": 443, "patch": 443, "round": 443, "fill": [443, 589, 614, 628], "support": 443, "approxim": 444, "cad": 448, "is_periodic_u": [451, 539], "is_periodic_v": [451, 539], "u_derge": 451, "revolut": [488, 493], "join": [589, 613, 628], "meshgrid": [589, 614, 616, 627, 628], "With": [589, 600, 614, 628], "isocurv": [589, 614, 628], "random": [589, 614, 628], "explor": [589, 600, 628], "topologi": [589, 600, 628], "fillet": [589, 600, 628], "overlap": [589, 600, 628], "hole": [589, 600, 628], "color": [590, 594, 596, 601, 602, 603, 604, 606, 609, 610, 611, 612], "compas_view": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629], "viewer": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629], "to_brep": [590, 592, 594, 595, 596, 597], "vertex_neighbor": 590, "vertex_edg": [590, 591], "vertex_fac": 590, "visual": [590, 591, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605], "render": [590, 591, 592, 593, 594, 595, 596, 597, 617, 618], "camera": [590, 591, 592, 593, 594, 595, 596, 597, 617, 618], "target": [590, 591, 592, 593, 594, 595, 596, 597, 617, 618], "scene": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627], "pointcolor": [590, 601, 602, 603, 604, 606, 608, 609, 610, 615, 620, 621, 622, 623, 626, 627], "red": [590, 594, 596, 603, 604, 606, 609, 610, 611, 612], "pointsiz": [590, 603, 604, 606, 608, 609, 610, 615, 616, 620, 621, 622, 623, 626, 627], "20": [590, 603, 604, 606, 608, 609, 610, 615, 620, 621, 622, 623, 626, 627], "ignor": [590, 594, 596, 598, 601, 602, 605], "to_lin": 590, "lineswidth": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 606, 607, 608, 609, 610, 611, 612, 615, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627], "linecolor": [590, 594, 596, 603, 604, 606, 609, 610, 611, 612, 615, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627], "from_brepfac": [590, 594, 598, 599], "opac": [590, 591, 594, 595, 596, 597], "show_fac": [590, 597, 615], "show_point": [590, 591, 592, 593, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 620, 621, 622, 623, 626, 627], "show": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627], "pathlib": 591, "extract": 591, "letter": 591, "__file__": 591, "fca": 591, "from_step": 591, "sure": 591, "heal": 591, "make_solid": 591, "For": [591, 631], "each": 591, "too": 591, "short": 591, "rest": 591, "do_fillet": 591, "e": [591, 629], "01": 591, "break": 591, "append": [591, 620, 623, 624], "lineardeflect": 592, "r": [592, 595, 596, 597, 615], "yz": 592, "worldyz": 592, "zx": 592, "worldzx": 592, "xy": 592, "cx": 592, "cy": 592, "cz": 592, "tubemesh": 593, "from_mesh": 593, "from_box": 594, "fa": 594, "fb": 594, "surfacecolor": [594, 596], "lighten": [594, 596], "50": [594, 596, 620], "blue": [594, 596, 604, 611], "math": [595, 596, 597, 615, 623], "from_axis_and_angl": [595, 596, 597, 615, 623], "30": [595, 596, 597, 623], "is_point_infrontof_plan": 596, "from_plan": [596, 599], "centroid": 596, "els": [596, 620], "includ": [598, 630], "api": [598, 628], "still": 598, "3d": [598, 628], "track": 598, "from_circl": [598, 599, 606, 617], "from_curv": 598, "from_edg": [598, 599], "perhap": 598, "set_surfac": 598, "add_boundari": 598, "add_hol": 598, "from_surfac": 598, "add_loop": [598, 599], "circle1": 599, "circle2": 599, "circle3": 599, "loop1": 599, "loop2": 599, "loop3": 599, "points0": 601, "curve0": 601, "12": 601, "closest_parameters_curv": 601, "closest_points_curv": 601, "to_polylin": [601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 617, 618, 619, 624, 625], "from_interpol": [602, 607, 611, 619], "closest_point": 602, "curve5": 604, "curve6": 604, "pairwis": 605, "to_point": 607, "from_lin": 608, "green": [611, 612], "pointsa": 612, "curvea": 612, "pointsb": 612, "curveb": 612, "45": 615, "aabb": 615, "zip": [615, 616, 620, 621, 622, 623, 626, 627], "show_lin": [615, 616], "flatten": [616, 623, 627], "linspac": [616, 620, 627], "ij": [616, 627], "25": 616, "from_extrus": [617, 618], "nurbscurve1": 619, "nurbscurve2": 619, "nurbssurface_2curv": 619, "points3": 619, "points4": 619, "points5": 619, "points6": 619, "nurbscurve3": 619, "nurbscurve4": 619, "nurbscurve5": 619, "nurbscurve6": 619, "nurbssurface_4curv": 619, "uu": 620, "vv": 620, "enumer": 620, "elif": 620, "to_mesh": [620, 621, 626], "centroid_points_xi": 623, "ry": 623, "rz": 623, "zaxi": 623, "360": 623, "intersections_with_lin": 623, "rendermod": 623, "ghost": 623, "u_curv": 624, "space_u": 624, "isocurve_u": [624, 625], "v_curv": 624, "space_v": 624, "isocurve_v": [624, 625], "to_jsonstr": 625, "from_jsonstr": 625, "sum": 625, "is_u_period": 625, "is_v_period": 625, "u_degre": 625, "u_knot": 625, "u_mult": 625, "v_degre": 625, "v_knot": 625, "v_mult": 625, "from_meshgrid": 626, "updat": 626, "choic": 626, "spacepoint": 627, "provid": [628, 630, 631], "easi": 628, "interfac": 628, "python": 628, "bind": 628, "model": 628, "cascad": 628, "wrapper": 628, "around": 628, "geom_surfac": 628, "repsect": 628, "work": 628, "rhinocommon": [628, 631], "packag": [628, 631], "introduct": 628, "instal": 628, "occbrep": 628, "axis_to_compa": 628, "bezier_to_compa": 628, "bspline_to_compa": 628, "compas_transformation_to_trsf": 628, "floats2_from_array2": 628, "hyperbola_to_compa": 628, "line_to_compa": 628, "location_to_compa": 628, "parabola_to_compa": 628, "plane_to_compa": 628, "sphere_to_compa": 628, "licens": 628, "acknowledg": 628, "index": 628, "modul": 628, "class_geom___curv": 628, "class_geom___b_spline_curv": 628, "class_geom___surfac": 628, "class_geom___b_spline_surfac": 628, "releas": 629, "via": 629, "conda": 629, "forg": 629, "c": [629, 630], "sever": 629, "To": 629, "environ": [629, 631], "activ": 629, "pip": 629, "latest": 629, "you": 629, "sourc": 629, "directli": [629, 631], "github": 629, "repo": 629, "pythonocc": 629, "git": 629, "clone": 629, "com": 629, "cd": 629, "mit": 630, "copyright": 630, "eth": 630, "zurich": 630, "block": 630, "research": 630, "group": 630, "permiss": 630, "herebi": 630, "grant": 630, "free": 630, "charg": 630, "person": 630, "obtain": 630, "softwar": 630, "associ": 630, "document": 630, "deal": 630, "restrict": 630, "publish": 630, "distribut": 630, "sublicens": 630, "sell": 630, "permit": 630, "whom": 630, "furnish": 630, "do": 630, "so": 630, "subject": 630, "follow": [630, 631], "condit": 630, "abov": 630, "notic": 630, "shall": 630, "substanti": 630, "portion": 630, "THE": 630, "AS": 630, "warranti": 630, "OF": 630, "kind": 630, "express": 630, "OR": 630, "impli": 630, "BUT": 630, "NOT": 630, "TO": 630, "merchant": 630, "FOR": 630, "particular": 630, "purpos": 630, "AND": 630, "noninfring": 630, "IN": 630, "NO": 630, "event": 630, "author": 630, "holder": 630, "BE": 630, "liabl": 630, "claim": 630, "damag": 630, "liabil": 630, "action": 630, "contract": 630, "tort": 630, "aris": 630, "WITH": 630, "give": 631, "brief": 631, "overview": 631, "function": 631, "recommend": 631, "practic": 631, "backend": 631, "although": 631, "ca": 631, "standalon": 631, "wai": 631, "snippet": 631, "accomplish": 631, "thing": 631, "advatag": 631, "automat": 631, "switch": 631, "depend": 631, "chage": 631, "script": 631, "throw": 631, "error": 631, "wherea": 631, "expect": 631}, "objects": {"compas_occ.brep": [[7, 0, 1, "", "OCCBrep"], [82, 0, 1, "", "OCCBrepEdge"], [109, 0, 1, "", "OCCBrepFace"], [140, 0, 1, "", "OCCBrepLoop"], [155, 0, 1, "", "OCCBrepVertex"]], "compas_occ.brep.OCCBrep": [[8, 1, 1, "", "ToString"], [9, 1, 1, "", "check"], [10, 1, 1, "", "compute_aabb"], [11, 1, 1, "", "compute_obb"], [12, 1, 1, "", "contains"], [13, 1, 1, "", "contours"], [14, 1, 1, "", "copy"], [15, 1, 1, "", "cull_unused_edges"], [16, 1, 1, "", "cull_unused_faces"], [17, 1, 1, "", "cull_unused_loops"], [18, 1, 1, "", "cull_unused_vertices"], [19, 1, 1, "", "edge_faces"], [20, 1, 1, "", "edge_loop"], [21, 1, 1, "", "edge_loops"], [22, 1, 1, "", "fillet"], [23, 1, 1, "", "filleted"], [24, 1, 1, "", "fix"], [25, 1, 1, "", "from_boolean_difference"], [26, 1, 1, "", "from_boolean_intersection"], [27, 1, 1, "", "from_boolean_union"], [28, 1, 1, "", "from_box"], [29, 1, 1, "", "from_brepfaces"], [30, 1, 1, "", "from_breps"], [31, 1, 1, "", "from_cone"], [32, 1, 1, "", "from_curves"], [33, 1, 1, "", "from_cylinder"], [34, 1, 1, "", "from_extrusion"], [35, 1, 1, "", "from_iges"], [36, 1, 1, "", "from_json"], [37, 1, 1, "", "from_jsonstring"], [38, 1, 1, "", "from_loft"], [39, 1, 1, "", "from_mesh"], [40, 1, 1, "", "from_native"], [41, 1, 1, "", "from_pipe"], [42, 1, 1, "", "from_plane"], [43, 1, 1, "", "from_planes"], [44, 1, 1, "", "from_polygons"], [45, 1, 1, "", "from_shape"], [46, 1, 1, "", "from_sphere"], [47, 1, 1, "", "from_step"], [48, 1, 1, "", "from_surface"], [49, 1, 1, "", "from_sweep"], [50, 1, 1, "", "from_torus"], [51, 1, 1, "", "heal"], [52, 1, 1, "", "make_solid"], [53, 1, 1, "", "overlap"], [54, 1, 1, "", "rotate"], [55, 1, 1, "", "rotated"], [56, 1, 1, "", "scale"], [57, 1, 1, "", "scaled"], [58, 1, 1, "", "sew"], [59, 1, 1, "", "sha256"], [60, 1, 1, "", "simplify"], [61, 1, 1, "", "slice"], [62, 1, 1, "", "split"], [63, 1, 1, "", "to_iges"], [64, 1, 1, "", "to_json"], [65, 1, 1, "", "to_jsonstring"], [66, 1, 1, "", "to_meshes"], [67, 1, 1, "", "to_polygons"], [68, 1, 1, "", "to_step"], [69, 1, 1, "", "to_stl"], [70, 1, 1, "", "to_tesselation"], [71, 1, 1, "", "to_viewmesh"], [72, 1, 1, "", "transform"], [73, 1, 1, "", "transformed"], [74, 1, 1, "", "translate"], [75, 1, 1, "", "translated"], [76, 1, 1, "", "trim"], [77, 1, 1, "", "trimmed"], [78, 1, 1, "", "validate_data"], [79, 1, 1, "", "vertex_edges"], [80, 1, 1, "", "vertex_faces"], [81, 1, 1, "", "vertex_neighbors"]], "compas_occ.brep.OCCBrepEdge": [[83, 1, 1, "", "ToString"], [84, 1, 1, "", "copy"], [85, 1, 1, "", "from_circle"], [86, 1, 1, "", "from_curve"], [87, 1, 1, "", "from_ellipse"], [88, 1, 1, "", "from_json"], [89, 1, 1, "", "from_jsonstring"], [90, 1, 1, "", "from_line"], [91, 1, 1, "", "from_point_point"], [92, 1, 1, "", "from_points"], [93, 1, 1, "", "from_vertex_vertex"], [94, 1, 1, "", "from_vertices"], [95, 1, 1, "", "is_equal"], [96, 1, 1, "", "is_same"], [97, 1, 1, "", "sha256"], [98, 1, 1, "", "to_bezier"], [99, 1, 1, "", "to_bspline"], [100, 1, 1, "", "to_circle"], [101, 1, 1, "", "to_curve"], [102, 1, 1, "", "to_ellipse"], [103, 1, 1, "", "to_hyperbola"], [104, 1, 1, "", "to_json"], [105, 1, 1, "", "to_jsonstring"], [106, 1, 1, "", "to_line"], [107, 1, 1, "", "to_parabola"], [108, 1, 1, "", "validate_data"]], "compas_occ.brep.OCCBrepFace": [[110, 1, 1, "", "ToString"], [111, 1, 1, "", "add_loop"], [112, 1, 1, "", "add_loops"], [113, 1, 1, "", "adjacent_faces"], [114, 1, 1, "", "as_brep"], [115, 1, 1, "", "copy"], [116, 1, 1, "", "fix"], [117, 1, 1, "", "from_cone"], [118, 1, 1, "", "from_cylinder"], [119, 1, 1, "", "from_json"], [120, 1, 1, "", "from_jsonstring"], [121, 1, 1, "", "from_plane"], [122, 1, 1, "", "from_polygon"], [123, 1, 1, "", "from_sphere"], [124, 1, 1, "", "from_surface"], [125, 1, 1, "", "from_torus"], [126, 1, 1, "", "is_equal"], [127, 1, 1, "", "is_same"], [128, 1, 1, "", "is_valid"], [129, 1, 1, "", "sha256"], [130, 1, 1, "", "to_cone"], [131, 1, 1, "", "to_cylinder"], [132, 1, 1, "", "to_json"], [133, 1, 1, "", "to_jsonstring"], [134, 1, 1, "", "to_plane"], [135, 1, 1, "", "to_polygon"], [136, 1, 1, "", "to_sphere"], [137, 1, 1, "", "to_torus"], [138, 1, 1, "", "try_get_nurbssurface"], [139, 1, 1, "", "validate_data"]], "compas_occ.brep.OCCBrepLoop": [[141, 1, 1, "", "ToString"], [142, 1, 1, "", "copy"], [143, 1, 1, "", "fix"], [144, 1, 1, "", "from_edges"], [145, 1, 1, "", "from_json"], [146, 1, 1, "", "from_jsonstring"], [147, 1, 1, "", "from_polygon"], [148, 1, 1, "", "from_polyline"], [149, 1, 1, "", "is_equal"], [150, 1, 1, "", "is_same"], [151, 1, 1, "", "sha256"], [152, 1, 1, "", "to_json"], [153, 1, 1, "", "to_jsonstring"], [154, 1, 1, "", "validate_data"]], "compas_occ.brep.OCCBrepVertex": [[156, 1, 1, "", "ToString"], [157, 1, 1, "", "copy"], [158, 1, 1, "", "from_json"], [159, 1, 1, "", "from_jsonstring"], [160, 1, 1, "", "from_point"], [161, 1, 1, "", "is_equal"], [162, 1, 1, "", "is_same"], [163, 1, 1, "", "sha256"], [164, 1, 1, "", "to_json"], [165, 1, 1, "", "to_jsonstring"], [166, 1, 1, "", "validate_data"]], "compas_occ.conversions": [[167, 2, 1, "", "array1_from_floats1"], [168, 2, 1, "", "array1_from_integers1"], [169, 2, 1, "", "array1_from_points1"], [170, 2, 1, "", "array2_from_floats2"], [171, 2, 1, "", "array2_from_points2"], [172, 2, 1, "", "ax2_to_compas"], [173, 2, 1, "", "ax3_to_compas"], [174, 2, 1, "", "axis_to_compas"], [175, 2, 1, "", "axis_to_compas_vector"], [176, 2, 1, "", "axis_to_occ"], [177, 2, 1, "", "bezier_to_compas"], [178, 2, 1, "", "bspline_to_compas"], [179, 2, 1, "", "circle_to_compas"], [180, 2, 1, "", "circle_to_occ"], [181, 2, 1, "", "compas_mesh_to_occ_shell"], [182, 2, 1, "", "compas_quadmesh_to_occ_shell"], [183, 2, 1, "", "compas_transformation_to_trsf"], [184, 2, 1, "", "compas_trimesh_to_occ_shell"], [185, 2, 1, "", "cone_to_occ"], [186, 2, 1, "", "cylinder_to_compas"], [187, 2, 1, "", "cylinder_to_occ"], [188, 2, 1, "", "direction_to_compas"], [189, 2, 1, "", "direction_to_occ"], [190, 2, 1, "", "ellipse_to_compas"], [191, 2, 1, "", "ellipse_to_occ"], [192, 2, 1, "", "floats2_from_array2"], [193, 2, 1, "", "frame_to_occ_ax2"], [194, 2, 1, "", "frame_to_occ_ax3"], [195, 2, 1, "", "harray1_from_points1"], [196, 2, 1, "", "hyperbola_to_compas"], [197, 2, 1, "", "line_to_compas"], [198, 2, 1, "", "line_to_occ"], [199, 2, 1, "", "location_to_compas"], [200, 2, 1, "", "ngon_to_face"], [201, 2, 1, "", "parabola_to_compas"], [202, 2, 1, "", "plane_to_compas"], [203, 2, 1, "", "plane_to_occ"], [204, 2, 1, "", "plane_to_occ_ax2"], [205, 2, 1, "", "plane_to_occ_ax3"], [206, 2, 1, "", "point2d_to_compas"], [207, 2, 1, "", "point_to_compas"], [208, 2, 1, "", "point_to_occ"], [209, 2, 1, "", "points1_from_array1"], [210, 2, 1, "", "points2_from_array2"], [211, 2, 1, "", "quad_to_face"], [212, 2, 1, "", "sphere_to_compas"], [213, 2, 1, "", "sphere_to_occ"], [214, 2, 1, "", "torus_to_occ"], [215, 2, 1, "", "triangle_to_face"], [216, 2, 1, "", "vector2d_to_compas"], [217, 2, 1, "", "vector_to_compas"], [218, 2, 1, "", "vector_to_occ"]], "compas_occ.geometry": [[219, 0, 1, "", "OCCCurve"], [269, 0, 1, "", "OCCCurve2d"], [313, 0, 1, "", "OCCExtrusionSurface"], [364, 0, 1, "", "OCCNurbsCurve"], [431, 0, 1, "", "OCCNurbsSurface"], [488, 0, 1, "", "OCCRevolutionSurface"], [539, 0, 1, "", "OCCSurface"]], "compas_occ.geometry.OCCCurve": [[220, 1, 1, "", "ToString"], [221, 1, 1, "", "aabb"], [222, 1, 1, "", "closest_parameters_curve"], [223, 1, 1, "", "closest_point"], [224, 1, 1, "", "closest_points_curve"], [225, 1, 1, "", "compute_aabb"], [226, 1, 1, "", "compute_obb"], [227, 1, 1, "", "copy"], [228, 1, 1, "", "curvature_at"], [229, 1, 1, "", "divide"], [230, 1, 1, "", "divide_by_count"], [231, 1, 1, "", "divide_by_length"], [232, 1, 1, "", "embedded"], [233, 1, 1, "", "fair"], [234, 1, 1, "", "frame_at"], [235, 1, 1, "", "from_json"], [236, 1, 1, "", "from_jsonstring"], [237, 1, 1, "", "from_obj"], [238, 1, 1, "", "from_occ"], [239, 1, 1, "", "from_step"], [240, 1, 1, "", "length"], [241, 1, 1, "", "normal_at"], [242, 1, 1, "", "offset"], [243, 1, 1, "", "parameter_at_distance"], [244, 1, 1, "", "point_at"], [245, 1, 1, "", "projected"], [246, 1, 1, "", "reverse"], [247, 1, 1, "", "reversed"], [248, 1, 1, "", "rotate"], [249, 1, 1, "", "rotated"], [250, 1, 1, "", "scale"], [251, 1, 1, "", "scaled"], [252, 1, 1, "", "sha256"], [253, 1, 1, "", "smooth"], [254, 1, 1, "", "split"], [255, 1, 1, "", "tangent_at"], [256, 1, 1, "", "to_json"], [257, 1, 1, "", "to_jsonstring"], [258, 1, 1, "", "to_obj"], [259, 1, 1, "", "to_points"], [260, 1, 1, "", "to_polygon"], [261, 1, 1, "", "to_polyline"], [262, 1, 1, "", "to_step"], [263, 1, 1, "", "transform"], [264, 1, 1, "", "transformed"], [265, 1, 1, "", "translate"], [266, 1, 1, "", "translated"], [267, 1, 1, "", "trim"], [268, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCCurve2d": [[270, 1, 1, "", "ToString"], [271, 1, 1, "", "aabb"], [272, 1, 1, "", "closest_point"], [273, 1, 1, "", "compute_aabb"], [274, 1, 1, "", "compute_obb"], [275, 1, 1, "", "copy"], [276, 1, 1, "", "curvature_at"], [277, 1, 1, "", "divide_by_count"], [278, 1, 1, "", "divide_by_length"], [279, 1, 1, "", "fair"], [280, 1, 1, "", "frame_at"], [281, 1, 1, "", "from_json"], [282, 1, 1, "", "from_jsonstring"], [283, 1, 1, "", "from_obj"], [284, 1, 1, "", "from_occ"], [285, 1, 1, "", "from_step"], [286, 1, 1, "", "length"], [287, 1, 1, "", "normal_at"], [288, 1, 1, "", "offset"], [289, 1, 1, "", "point_at"], [290, 1, 1, "", "reverse"], [291, 1, 1, "", "reversed"], [292, 1, 1, "", "rotate"], [293, 1, 1, "", "rotated"], [294, 1, 1, "", "scale"], [295, 1, 1, "", "scaled"], [296, 1, 1, "", "sha256"], [297, 1, 1, "", "smooth"], [298, 1, 1, "", "split"], [299, 1, 1, "", "tangent_at"], [300, 1, 1, "", "to_json"], [301, 1, 1, "", "to_jsonstring"], [302, 1, 1, "", "to_obj"], [303, 1, 1, "", "to_points"], [304, 1, 1, "", "to_polygon"], [305, 1, 1, "", "to_polyline"], [306, 1, 1, "", "to_step"], [307, 1, 1, "", "transform"], [308, 1, 1, "", "transformed"], [309, 1, 1, "", "translate"], [310, 1, 1, "", "translated"], [311, 1, 1, "", "trim"], [312, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCExtrusionSurface": [[314, 1, 1, "", "ToString"], [315, 1, 1, "", "aabb"], [316, 1, 1, "", "boundary"], [317, 1, 1, "", "closest_point"], [318, 1, 1, "", "compute"], [319, 1, 1, "", "compute_aabb"], [320, 1, 1, "", "compute_obb"], [321, 1, 1, "", "copy"], [322, 1, 1, "", "curvature_at"], [323, 1, 1, "", "frame_at"], [324, 1, 1, "", "from_face"], [325, 1, 1, "", "from_json"], [326, 1, 1, "", "from_jsonstring"], [327, 1, 1, "", "from_obj"], [328, 1, 1, "", "from_occ"], [329, 1, 1, "", "from_plane"], [330, 1, 1, "", "from_step"], [331, 1, 1, "", "gaussian_curvature_at"], [332, 1, 1, "", "intersections_with_curve"], [333, 1, 1, "", "intersections_with_line"], [334, 1, 1, "", "intersections_with_plane"], [335, 1, 1, "", "isocurve_u"], [336, 1, 1, "", "isocurve_v"], [337, 1, 1, "", "mean_curvature_at"], [338, 1, 1, "", "normal_at"], [339, 1, 1, "", "obb"], [340, 1, 1, "", "point_at"], [341, 1, 1, "", "pointgrid"], [342, 1, 1, "", "rotate"], [343, 1, 1, "", "rotated"], [344, 1, 1, "", "scale"], [345, 1, 1, "", "scaled"], [346, 1, 1, "", "sha256"], [347, 1, 1, "", "space_u"], [348, 1, 1, "", "space_v"], [349, 1, 1, "", "to_brep"], [350, 1, 1, "", "to_json"], [351, 1, 1, "", "to_jsonstring"], [352, 1, 1, "", "to_mesh"], [353, 1, 1, "", "to_polyhedron"], [354, 1, 1, "", "to_quads"], [355, 1, 1, "", "to_step"], [356, 1, 1, "", "to_tesselation"], [357, 1, 1, "", "to_triangles"], [358, 1, 1, "", "to_vertices_and_faces"], [359, 1, 1, "", "transform"], [360, 1, 1, "", "transformed"], [361, 1, 1, "", "translate"], [362, 1, 1, "", "translated"], [363, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCNurbsCurve": [[365, 1, 1, "", "ToString"], [366, 1, 1, "", "aabb"], [367, 1, 1, "", "closest_parameters_curve"], [368, 1, 1, "", "closest_point"], [369, 1, 1, "", "closest_points_curve"], [370, 1, 1, "", "compute_aabb"], [371, 1, 1, "", "compute_obb"], [372, 1, 1, "", "copy"], [373, 1, 1, "", "curvature_at"], [374, 1, 1, "", "divide"], [375, 1, 1, "", "divide_by_count"], [376, 1, 1, "", "divide_by_length"], [377, 1, 1, "", "elevate_degree"], [378, 1, 1, "", "embedded"], [379, 1, 1, "", "fair"], [380, 1, 1, "", "frame_at"], [381, 1, 1, "", "from_arc"], [382, 1, 1, "", "from_circle"], [383, 1, 1, "", "from_ellipse"], [384, 1, 1, "", "from_interpolation"], [385, 1, 1, "", "from_json"], [386, 1, 1, "", "from_jsonstring"], [387, 1, 1, "", "from_line"], [388, 1, 1, "", "from_native"], [389, 1, 1, "", "from_obj"], [390, 1, 1, "", "from_occ"], [391, 1, 1, "", "from_parameters"], [392, 1, 1, "", "from_points"], [393, 1, 1, "", "from_step"], [394, 1, 1, "", "insert_knot"], [395, 1, 1, "", "join"], [396, 1, 1, "", "joined"], [397, 1, 1, "", "length"], [398, 1, 1, "", "normal_at"], [399, 1, 1, "", "offset"], [400, 1, 1, "", "parameter_at_distance"], [401, 1, 1, "", "point_at"], [402, 1, 1, "", "projected"], [403, 1, 1, "", "reduce_degree"], [404, 1, 1, "", "refine_knot"], [405, 1, 1, "", "remove_knot"], [406, 1, 1, "", "reverse"], [407, 1, 1, "", "reversed"], [408, 1, 1, "", "rotate"], [409, 1, 1, "", "rotated"], [410, 1, 1, "", "scale"], [411, 1, 1, "", "scaled"], [412, 1, 1, "", "segment"], [413, 1, 1, "", "segmented"], [414, 1, 1, "", "sha256"], [415, 1, 1, "", "smooth"], [416, 1, 1, "", "split"], [417, 1, 1, "", "tangent_at"], [418, 1, 1, "", "to_json"], [419, 1, 1, "", "to_jsonstring"], [420, 1, 1, "", "to_obj"], [421, 1, 1, "", "to_points"], [422, 1, 1, "", "to_polygon"], [423, 1, 1, "", "to_polyline"], [424, 1, 1, "", "to_step"], [425, 1, 1, "", "transform"], [426, 1, 1, "", "transformed"], [427, 1, 1, "", "translate"], [428, 1, 1, "", "translated"], [429, 1, 1, "", "trim"], [430, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCNurbsSurface": [[432, 1, 1, "", "ToString"], [433, 1, 1, "", "aabb"], [434, 1, 1, "", "boundary"], [435, 1, 1, "", "closest_point"], [436, 1, 1, "", "compute_aabb"], [437, 1, 1, "", "compute_obb"], [438, 1, 1, "", "copy"], [439, 1, 1, "", "curvature_at"], [440, 1, 1, "", "frame_at"], [441, 1, 1, "", "from_extrusion"], [442, 1, 1, "", "from_face"], [443, 1, 1, "", "from_fill"], [444, 1, 1, "", "from_interpolation"], [445, 1, 1, "", "from_json"], [446, 1, 1, "", "from_jsonstring"], [447, 1, 1, "", "from_meshgrid"], [448, 1, 1, "", "from_native"], [449, 1, 1, "", "from_obj"], [450, 1, 1, "", "from_occ"], [451, 1, 1, "", "from_parameters"], [452, 1, 1, "", "from_plane"], [453, 1, 1, "", "from_points"], [454, 1, 1, "", "from_step"], [455, 1, 1, "", "gaussian_curvature_at"], [456, 1, 1, "", "intersections_with_curve"], [457, 1, 1, "", "intersections_with_line"], [458, 1, 1, "", "intersections_with_plane"], [459, 1, 1, "", "isocurve_u"], [460, 1, 1, "", "isocurve_v"], [461, 1, 1, "", "mean_curvature_at"], [462, 1, 1, "", "normal_at"], [463, 1, 1, "", "obb"], [464, 1, 1, "", "point_at"], [465, 1, 1, "", "pointgrid"], [466, 1, 1, "", "rotate"], [467, 1, 1, "", "rotated"], [468, 1, 1, "", "scale"], [469, 1, 1, "", "scaled"], [470, 1, 1, "", "sha256"], [471, 1, 1, "", "space_u"], [472, 1, 1, "", "space_v"], [473, 1, 1, "", "to_brep"], [474, 1, 1, "", "to_json"], [475, 1, 1, "", "to_jsonstring"], [476, 1, 1, "", "to_mesh"], [477, 1, 1, "", "to_polyhedron"], [478, 1, 1, "", "to_quads"], [479, 1, 1, "", "to_step"], [480, 1, 1, "", "to_tesselation"], [481, 1, 1, "", "to_triangles"], [482, 1, 1, "", "to_vertices_and_faces"], [483, 1, 1, "", "transform"], [484, 1, 1, "", "transformed"], [485, 1, 1, "", "translate"], [486, 1, 1, "", "translated"], [487, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCRevolutionSurface": [[489, 1, 1, "", "ToString"], [490, 1, 1, "", "aabb"], [491, 1, 1, "", "boundary"], [492, 1, 1, "", "closest_point"], [493, 1, 1, "", "compute"], [494, 1, 1, "", "compute_aabb"], [495, 1, 1, "", "compute_obb"], [496, 1, 1, "", "copy"], [497, 1, 1, "", "curvature_at"], [498, 1, 1, "", "frame_at"], [499, 1, 1, "", "from_face"], [500, 1, 1, "", "from_json"], [501, 1, 1, "", "from_jsonstring"], [502, 1, 1, "", "from_obj"], [503, 1, 1, "", "from_occ"], [504, 1, 1, "", "from_plane"], [505, 1, 1, "", "from_step"], [506, 1, 1, "", "gaussian_curvature_at"], [507, 1, 1, "", "intersections_with_curve"], [508, 1, 1, "", "intersections_with_line"], [509, 1, 1, "", "intersections_with_plane"], [510, 1, 1, "", "isocurve_u"], [511, 1, 1, "", "isocurve_v"], [512, 1, 1, "", "mean_curvature_at"], [513, 1, 1, "", "normal_at"], [514, 1, 1, "", "obb"], [515, 1, 1, "", "point_at"], [516, 1, 1, "", "pointgrid"], [517, 1, 1, "", "rotate"], [518, 1, 1, "", "rotated"], [519, 1, 1, "", "scale"], [520, 1, 1, "", "scaled"], [521, 1, 1, "", "sha256"], [522, 1, 1, "", "space_u"], [523, 1, 1, "", "space_v"], [524, 1, 1, "", "to_brep"], [525, 1, 1, "", "to_json"], [526, 1, 1, "", "to_jsonstring"], [527, 1, 1, "", "to_mesh"], [528, 1, 1, "", "to_polyhedron"], [529, 1, 1, "", "to_quads"], [530, 1, 1, "", "to_step"], [531, 1, 1, "", "to_tesselation"], [532, 1, 1, "", "to_triangles"], [533, 1, 1, "", "to_vertices_and_faces"], [534, 1, 1, "", "transform"], [535, 1, 1, "", "transformed"], [536, 1, 1, "", "translate"], [537, 1, 1, "", "translated"], [538, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCSurface": [[540, 1, 1, "", "ToString"], [541, 1, 1, "", "aabb"], [542, 1, 1, "", "boundary"], [543, 1, 1, "", "closest_point"], [544, 1, 1, "", "compute_aabb"], [545, 1, 1, "", "compute_obb"], [546, 1, 1, "", "copy"], [547, 1, 1, "", "curvature_at"], [548, 1, 1, "", "frame_at"], [549, 1, 1, "", "from_face"], [550, 1, 1, "", "from_json"], [551, 1, 1, "", "from_jsonstring"], [552, 1, 1, "", "from_obj"], [553, 1, 1, "", "from_occ"], [554, 1, 1, "", "from_plane"], [555, 1, 1, "", "from_step"], [556, 1, 1, "", "gaussian_curvature_at"], [557, 1, 1, "", "intersections_with_curve"], [558, 1, 1, "", "intersections_with_line"], [559, 1, 1, "", "intersections_with_plane"], [560, 1, 1, "", "isocurve_u"], [561, 1, 1, "", "isocurve_v"], [562, 1, 1, "", "mean_curvature_at"], [563, 1, 1, "", "normal_at"], [564, 1, 1, "", "obb"], [565, 1, 1, "", "point_at"], [566, 1, 1, "", "pointgrid"], [567, 1, 1, "", "rotate"], [568, 1, 1, "", "rotated"], [569, 1, 1, "", "scale"], [570, 1, 1, "", "scaled"], [571, 1, 1, "", "sha256"], [572, 1, 1, "", "space_u"], [573, 1, 1, "", "space_v"], [574, 1, 1, "", "to_brep"], [575, 1, 1, "", "to_json"], [576, 1, 1, "", "to_jsonstring"], [577, 1, 1, "", "to_mesh"], [578, 1, 1, "", "to_polyhedron"], [579, 1, 1, "", "to_quads"], [580, 1, 1, "", "to_step"], [581, 1, 1, "", "to_tesselation"], [582, 1, 1, "", "to_triangles"], [583, 1, 1, "", "to_vertices_and_faces"], [584, 1, 1, "", "transform"], [585, 1, 1, "", "transformed"], [586, 1, 1, "", "translate"], [587, 1, 1, "", "translated"], [588, 1, 1, "", "validate_data"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "function", "Python function"]}, "titleterms": {"acknowledg": 0, "api": 1, "refer": [1, 628], "compas_occ": [2, 3, 4], "brep": [2, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 631], "class": [2, 5, 6], "convers": 3, "function": 3, "geometri": 4, "curv": [5, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 631], "surfac": [6, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 631], "occbrep": [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, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "tostr": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "check": 9, "compute_aabb": [10, 225, 273, 319, 370, 436, 494, 544], "compute_obb": [11, 226, 274, 320, 371, 437, 495, 545], "contain": 12, "contour": 13, "copi": [14, 84, 115, 142, 157, 227, 275, 321, 372, 438, 496, 546], "cull_unused_edg": 15, "cull_unused_fac": 16, "cull_unused_loop": 17, "cull_unused_vertic": 18, "edge_fac": 19, "edge_loop": [20, 21], "fillet": [22, 23, 591], "fix": [24, 116, 143], "from_boolean_differ": 25, "from_boolean_intersect": 26, "from_boolean_union": 27, "from_box": 28, "from_brepfac": 29, "from_brep": 30, "from_con": [31, 117], "from_curv": [32, 86], "from_cylind": [33, 118], "from_extrus": [34, 441], "from_ig": 35, "from_json": [36, 88, 119, 145, 158, 235, 281, 325, 385, 445, 500, 550], "from_jsonstr": [37, 89, 120, 146, 159, 236, 282, 326, 386, 446, 501, 551], "from_loft": 38, "from_mesh": 39, "from_n": [40, 388, 448], "from_pip": 41, "from_plan": [42, 43, 121, 329, 452, 504, 554], "from_polygon": [44, 122, 147], "from_shap": 45, "from_spher": [46, 123], "from_step": [47, 239, 285, 330, 393, 454, 505, 555], "from_surfac": [48, 124], "from_sweep": 49, "from_toru": [50, 125], "heal": 51, "make_solid": 52, "overlap": [53, 594], "rotat": [54, 55, 248, 249, 292, 293, 342, 343, 408, 409, 466, 467, 517, 518, 567, 568], "scale": [56, 57, 250, 251, 294, 295, 344, 345, 410, 411, 468, 469, 519, 520, 569, 570], "sew": 58, "sha256": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "simplifi": 60, "slice": [61, 595], "split": [62, 254, 298, 416, 596], "to_ig": 63, "to_json": [64, 104, 132, 152, 164, 256, 300, 350, 418, 474, 525, 575], "to_jsonstr": [65, 105, 133, 153, 165, 257, 301, 351, 419, 475, 526, 576], "to_mesh": [66, 352, 476, 527, 577], "to_polygon": [67, 135, 260, 304, 422], "to_step": [68, 262, 306, 355, 424, 479, 530, 580], "to_stl": 69, "to_tessel": [70, 356, 480, 531, 581], "to_viewmesh": 71, "transform": [72, 73, 263, 264, 307, 308, 359, 360, 425, 426, 483, 484, 534, 535, 584, 585], "translat": [74, 75, 265, 266, 309, 310, 361, 362, 427, 428, 485, 486, 536, 537, 586, 587], "trim": [76, 77, 267, 311, 429, 597], "validate_data": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "vertex_edg": 79, "vertex_fac": 80, "vertex_neighbor": 81, "occbrepedg": [82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "from_circl": [85, 382], "from_ellips": [87, 383], "from_lin": [90, 387], "from_point_point": 91, "from_point": [92, 160, 392, 453], "from_vertex_vertex": 93, "from_vertic": 94, "is_equ": [95, 126, 149, 161], "is_sam": [96, 127, 150, 162], "to_bezi": 98, "to_bsplin": 99, "to_circl": 100, "to_curv": 101, "to_ellips": 102, "to_hyperbola": 103, "to_lin": 106, "to_parabola": 107, "occbrepfac": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139], "add_loop": [111, 112], "adjacent_fac": 113, "as_brep": 114, "is_valid": 128, "to_con": 130, "to_cylind": 131, "to_plan": 134, "to_spher": 136, "to_toru": 137, "try_get_nurbssurfac": 138, "occbreploop": [140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154], "from_edg": 144, "from_polylin": 148, "occbrepvertex": [155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166], "array1_from_floats1": 167, "array1_from_integers1": 168, "array1_from_points1": 169, "array2_from_floats2": 170, "array2_from_points2": 171, "ax2_to_compa": 172, "ax3_to_compa": 173, "axis_to_compa": 174, "axis_to_compas_vector": 175, "axis_to_occ": 176, "bezier_to_compa": 177, "bspline_to_compa": 178, "circle_to_compa": 179, "circle_to_occ": 180, "compas_mesh_to_occ_shel": 181, "compas_quadmesh_to_occ_shel": 182, "compas_transformation_to_trsf": 183, "compas_trimesh_to_occ_shel": 184, "cone_to_occ": 185, "cylinder_to_compa": 186, "cylinder_to_occ": 187, "direction_to_compa": 188, "direction_to_occ": 189, "ellipse_to_compa": 190, "ellipse_to_occ": 191, "floats2_from_array2": 192, "frame_to_occ_ax2": 193, "frame_to_occ_ax3": 194, "harray1_from_points1": 195, "hyperbola_to_compa": 196, "line_to_compa": 197, "line_to_occ": 198, "location_to_compa": 199, "ngon_to_fac": 200, "parabola_to_compa": 201, "plane_to_compa": 202, "plane_to_occ": 203, "plane_to_occ_ax2": 204, "plane_to_occ_ax3": 205, "point2d_to_compa": 206, "point_to_compa": 207, "point_to_occ": 208, "points1_from_array1": 209, "points2_from_array2": 210, "quad_to_fac": 211, "sphere_to_compa": 212, "sphere_to_occ": 213, "torus_to_occ": 214, "triangle_to_fac": 215, "vector2d_to_compa": 216, "vector_to_compa": 217, "vector_to_occ": 218, "occcurv": [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268], "aabb": [221, 271, 315, 366, 433, 490, 541], "closest_parameters_curv": [222, 367], "closest_point": [223, 272, 317, 368, 435, 492, 543], "closest_points_curv": [224, 369], "curvature_at": [228, 276, 322, 373, 439, 497, 547], "divid": [229, 374, 605], "divide_by_count": [230, 277, 375], "divide_by_length": [231, 278, 376], "embed": [232, 378], "fair": [233, 279, 379], "frame_at": [234, 280, 323, 380, 440, 498, 548], "from_obj": [237, 283, 327, 389, 449, 502, 552], "from_occ": [238, 284, 328, 390, 450, 503, 553], "length": [240, 286, 397], "normal_at": [241, 287, 338, 398, 462, 513, 563], "offset": [242, 288, 399], "parameter_at_dist": [243, 400], "point_at": [244, 289, 340, 401, 464, 515, 565], "project": [245, 402], "revers": [246, 247, 290, 291, 406, 407], "smooth": [253, 297, 415], "tangent_at": [255, 299, 417], "to_obj": [258, 302, 420], "to_point": [259, 303, 421], "to_polylin": [261, 305, 423], "occcurve2d": [269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "occextrusionsurfac": [313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363], "boundari": [316, 434, 491, 542], "comput": [318, 493], "from_fac": [324, 442, 499, 549], "gaussian_curvature_at": [331, 455, 506, 556], "intersections_with_curv": [332, 456, 507, 557], "intersections_with_lin": [333, 457, 508, 558], "intersections_with_plan": [334, 458, 509, 559], "isocurve_u": [335, 459, 510, 560], "isocurve_v": [336, 460, 511, 561], "mean_curvature_at": [337, 461, 512, 562], "obb": [339, 463, 514, 564], "pointgrid": [341, 465, 516, 566], "space_u": [347, 471, 522, 572], "space_v": [348, 472, 523, 573], "to_brep": [349, 473, 524, 574], "to_polyhedron": [353, 477, 528, 578], "to_quad": [354, 478, 529, 579], "to_triangl": [357, 481, 532, 582], "to_vertices_and_fac": [358, 482, 533, 583], "occnurbscurv": [364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430], "elevate_degre": 377, "from_arc": 381, "from_interpol": [384, 444], "from_paramet": [391, 451], "insert_knot": 394, "join": [395, 396, 611], "reduce_degre": 403, "refine_knot": 404, "remove_knot": 405, "segment": [412, 413, 612], "occnurbssurfac": [431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487], "from_fil": 443, "from_meshgrid": 447, "occrevolutionsurfac": [488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "occsurfac": [539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588], "exampl": 589, "explor": 590, "topologi": 590, "add": 591, "edg": 591, "shape": 592, "from": [592, 593, 606, 607, 608, 609, 610, 617, 618, 619, 620, 621, 622], "boolean": 592, "mesh": 593, "find": 594, "between": 594, "two": 594, "With": [595, 596, 597, 623, 626], "plane": [595, 596, 597], "hole": [598, 599], "closest": [601, 602], "paramet": [601, 609, 621], "point": [602, 610, 622, 626, 627], "comparison": [603, 604], "1": [603, 617], "2": [604, 618], "circl": 606, "interpol": 607, "line": [608, 623], "control": [610, 626], "axi": 615, "align": 615, "bound": 615, "box": 615, "frame": 616, "extrus": [617, 618], "fill": 619, "meshgrid": 620, "intersect": 623, "isocurv": 624, "json": 625, "data": 625, "random": 626, "over": 627, "uv": 627, "space": 627, "compa": 628, "occ": 628, "tabl": 628, "content": 628, "indic": 628, "instal": 629, "stabl": 629, "develop": 629, "licens": 630, "tutori": 631, "work": 631, "visualis": 631, "us": 631, "plugin": 631, "system": 631}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"Acknowledgements": [[0, "acknowledgements"]], "API Reference": [[1, "api-reference"]], "compas_occ.brep": [[2, "compas-occ-brep"]], "Classes": [[2, "classes"], [5, "classes"], [6, "classes"]], "compas_occ.conversions": [[3, "compas-occ-conversions"]], "Functions": [[3, "functions"]], "compas_occ.geometry": [[4, "compas-occ-geometry"]], "Curves": [[5, "curves"], [613, "curves"]], "Surfaces": [[6, "surfaces"], [614, "surfaces"]], "OCCBrep": [[7, "occbrep"]], "OCCBrep.ToString": [[8, "occbrep-tostring"]], "OCCBrep.check": [[9, "occbrep-check"]], "OCCBrep.compute_aabb": [[10, "occbrep-compute-aabb"]], "OCCBrep.compute_obb": [[11, "occbrep-compute-obb"]], "OCCBrep.contains": [[12, "occbrep-contains"]], "OCCBrep.contours": [[13, "occbrep-contours"]], "OCCBrep.copy": [[14, "occbrep-copy"]], "OCCBrep.cull_unused_edges": [[15, "occbrep-cull-unused-edges"]], "OCCBrep.cull_unused_faces": [[16, "occbrep-cull-unused-faces"]], "OCCBrep.cull_unused_loops": [[17, "occbrep-cull-unused-loops"]], "OCCBrep.cull_unused_vertices": [[18, "occbrep-cull-unused-vertices"]], "OCCBrep.edge_faces": [[19, "occbrep-edge-faces"]], "OCCBrep.edge_loop": [[20, "occbrep-edge-loop"]], "OCCBrep.edge_loops": [[21, "occbrep-edge-loops"]], "OCCBrep.fillet": [[22, "occbrep-fillet"]], "OCCBrep.filleted": [[23, "occbrep-filleted"]], "OCCBrep.fix": [[24, "occbrep-fix"]], "OCCBrep.from_boolean_difference": [[25, "occbrep-from-boolean-difference"]], "OCCBrep.from_boolean_intersection": [[26, "occbrep-from-boolean-intersection"]], "OCCBrep.from_boolean_union": [[27, "occbrep-from-boolean-union"]], "OCCBrep.from_box": [[28, "occbrep-from-box"]], "OCCBrep.from_brepfaces": [[29, "occbrep-from-brepfaces"]], "OCCBrep.from_breps": [[30, "occbrep-from-breps"]], "OCCBrep.from_cone": [[31, "occbrep-from-cone"]], "OCCBrep.from_curves": [[32, "occbrep-from-curves"]], "OCCBrep.from_cylinder": [[33, "occbrep-from-cylinder"]], "OCCBrep.from_extrusion": [[34, "occbrep-from-extrusion"]], "OCCBrep.from_iges": [[35, "occbrep-from-iges"]], "OCCBrep.from_json": [[36, "occbrep-from-json"]], "OCCBrep.from_jsonstring": [[37, "occbrep-from-jsonstring"]], "OCCBrep.from_loft": [[38, "occbrep-from-loft"]], "OCCBrep.from_mesh": [[39, "occbrep-from-mesh"]], "OCCBrep.from_native": [[40, "occbrep-from-native"]], "OCCBrep.from_pipe": [[41, "occbrep-from-pipe"]], "OCCBrep.from_plane": [[42, "occbrep-from-plane"]], "OCCBrep.from_planes": [[43, "occbrep-from-planes"]], "OCCBrep.from_polygons": [[44, "occbrep-from-polygons"]], "OCCBrep.from_shape": [[45, "occbrep-from-shape"]], "OCCBrep.from_sphere": [[46, "occbrep-from-sphere"]], "OCCBrep.from_step": [[47, "occbrep-from-step"]], "OCCBrep.from_surface": [[48, "occbrep-from-surface"]], "OCCBrep.from_sweep": [[49, "occbrep-from-sweep"]], "OCCBrep.from_torus": [[50, "occbrep-from-torus"]], "OCCBrep.heal": [[51, "occbrep-heal"]], "OCCBrep.make_solid": [[52, "occbrep-make-solid"]], "OCCBrep.overlap": [[53, "occbrep-overlap"]], "OCCBrep.rotate": [[54, "occbrep-rotate"]], "OCCBrep.rotated": [[55, "occbrep-rotated"]], "OCCBrep.scale": [[56, "occbrep-scale"]], "OCCBrep.scaled": [[57, "occbrep-scaled"]], "OCCBrep.sew": [[58, "occbrep-sew"]], "OCCBrep.sha256": [[59, "occbrep-sha256"]], "OCCBrep.simplify": [[60, "occbrep-simplify"]], "OCCBrep.slice": [[61, "occbrep-slice"]], "OCCBrep.split": [[62, "occbrep-split"]], "OCCBrep.to_iges": [[63, "occbrep-to-iges"]], "OCCBrep.to_json": [[64, "occbrep-to-json"]], "OCCBrep.to_jsonstring": [[65, "occbrep-to-jsonstring"]], "OCCBrep.to_meshes": [[66, "occbrep-to-meshes"]], "OCCBrep.to_polygons": [[67, "occbrep-to-polygons"]], "OCCBrep.to_step": [[68, "occbrep-to-step"]], "OCCBrep.to_stl": [[69, "occbrep-to-stl"]], "OCCBrep.to_tesselation": [[70, "occbrep-to-tesselation"]], "OCCBrep.to_viewmesh": [[71, "occbrep-to-viewmesh"]], "OCCBrep.transform": [[72, "occbrep-transform"]], "OCCBrep.transformed": [[73, "occbrep-transformed"]], "OCCBrep.translate": [[74, "occbrep-translate"]], "OCCBrep.translated": [[75, "occbrep-translated"]], "OCCBrep.trim": [[76, "occbrep-trim"]], "OCCBrep.trimmed": [[77, "occbrep-trimmed"]], "OCCBrep.validate_data": [[78, "occbrep-validate-data"]], "OCCBrep.vertex_edges": [[79, "occbrep-vertex-edges"]], "OCCBrep.vertex_faces": [[80, "occbrep-vertex-faces"]], "OCCBrep.vertex_neighbors": [[81, "occbrep-vertex-neighbors"]], "OCCBrepEdge": [[82, "occbrepedge"]], "OCCBrepEdge.ToString": [[83, "occbrepedge-tostring"]], "OCCBrepEdge.copy": [[84, "occbrepedge-copy"]], "OCCBrepEdge.from_circle": [[85, "occbrepedge-from-circle"]], "OCCBrepEdge.from_curve": [[86, "occbrepedge-from-curve"]], "OCCBrepEdge.from_ellipse": [[87, "occbrepedge-from-ellipse"]], "OCCBrepEdge.from_json": [[88, "occbrepedge-from-json"]], "OCCBrepEdge.from_jsonstring": [[89, "occbrepedge-from-jsonstring"]], "OCCBrepEdge.from_line": [[90, "occbrepedge-from-line"]], "OCCBrepEdge.from_point_point": [[91, "occbrepedge-from-point-point"]], "OCCBrepEdge.from_points": [[92, "occbrepedge-from-points"]], "OCCBrepEdge.from_vertex_vertex": [[93, "occbrepedge-from-vertex-vertex"]], "OCCBrepEdge.from_vertices": [[94, "occbrepedge-from-vertices"]], "OCCBrepEdge.is_equal": [[95, "occbrepedge-is-equal"]], "OCCBrepEdge.is_same": [[96, "occbrepedge-is-same"]], "OCCBrepEdge.sha256": [[97, "occbrepedge-sha256"]], "OCCBrepEdge.to_bezier": [[98, "occbrepedge-to-bezier"]], "OCCBrepEdge.to_bspline": [[99, "occbrepedge-to-bspline"]], "OCCBrepEdge.to_circle": [[100, "occbrepedge-to-circle"]], "OCCBrepEdge.to_curve": [[101, "occbrepedge-to-curve"]], "OCCBrepEdge.to_ellipse": [[102, "occbrepedge-to-ellipse"]], "OCCBrepEdge.to_hyperbola": [[103, "occbrepedge-to-hyperbola"]], "OCCBrepEdge.to_json": [[104, "occbrepedge-to-json"]], "OCCBrepEdge.to_jsonstring": [[105, "occbrepedge-to-jsonstring"]], "OCCBrepEdge.to_line": [[106, "occbrepedge-to-line"]], "OCCBrepEdge.to_parabola": [[107, "occbrepedge-to-parabola"]], "OCCBrepEdge.validate_data": [[108, "occbrepedge-validate-data"]], "OCCBrepFace": [[109, "occbrepface"]], "OCCBrepFace.ToString": [[110, "occbrepface-tostring"]], "OCCBrepFace.add_loop": [[111, "occbrepface-add-loop"]], "OCCBrepFace.add_loops": [[112, "occbrepface-add-loops"]], "OCCBrepFace.adjacent_faces": [[113, "occbrepface-adjacent-faces"]], "OCCBrepFace.as_brep": [[114, "occbrepface-as-brep"]], "OCCBrepFace.copy": [[115, "occbrepface-copy"]], "OCCBrepFace.fix": [[116, "occbrepface-fix"]], "OCCBrepFace.from_cone": [[117, "occbrepface-from-cone"]], "OCCBrepFace.from_cylinder": [[118, "occbrepface-from-cylinder"]], "OCCBrepFace.from_json": [[119, "occbrepface-from-json"]], "OCCBrepFace.from_jsonstring": [[120, "occbrepface-from-jsonstring"]], "OCCBrepFace.from_plane": [[121, "occbrepface-from-plane"]], "OCCBrepFace.from_polygon": [[122, "occbrepface-from-polygon"]], "OCCBrepFace.from_sphere": [[123, "occbrepface-from-sphere"]], "OCCBrepFace.from_surface": [[124, "occbrepface-from-surface"]], "OCCBrepFace.from_torus": [[125, "occbrepface-from-torus"]], "OCCBrepFace.is_equal": [[126, "occbrepface-is-equal"]], "OCCBrepFace.is_same": [[127, "occbrepface-is-same"]], "OCCBrepFace.is_valid": [[128, "occbrepface-is-valid"]], "OCCBrepFace.sha256": [[129, "occbrepface-sha256"]], "OCCBrepFace.to_cone": [[130, "occbrepface-to-cone"]], "OCCBrepFace.to_cylinder": [[131, "occbrepface-to-cylinder"]], "OCCBrepFace.to_json": [[132, "occbrepface-to-json"]], "OCCBrepFace.to_jsonstring": [[133, "occbrepface-to-jsonstring"]], "OCCBrepFace.to_plane": [[134, "occbrepface-to-plane"]], "OCCBrepFace.to_polygon": [[135, "occbrepface-to-polygon"]], "OCCBrepFace.to_sphere": [[136, "occbrepface-to-sphere"]], "OCCBrepFace.to_torus": [[137, "occbrepface-to-torus"]], "OCCBrepFace.try_get_nurbssurface": [[138, "occbrepface-try-get-nurbssurface"]], "OCCBrepFace.validate_data": [[139, "occbrepface-validate-data"]], "OCCBrepLoop": [[140, "occbreploop"]], "OCCBrepLoop.ToString": [[141, "occbreploop-tostring"]], "OCCBrepLoop.copy": [[142, "occbreploop-copy"]], "OCCBrepLoop.fix": [[143, "occbreploop-fix"]], "OCCBrepLoop.from_edges": [[144, "occbreploop-from-edges"]], "OCCBrepLoop.from_json": [[145, "occbreploop-from-json"]], "OCCBrepLoop.from_jsonstring": [[146, "occbreploop-from-jsonstring"]], "OCCBrepLoop.from_polygon": [[147, "occbreploop-from-polygon"]], "OCCBrepLoop.from_polyline": [[148, "occbreploop-from-polyline"]], "OCCBrepLoop.is_equal": [[149, "occbreploop-is-equal"]], "OCCBrepLoop.is_same": [[150, "occbreploop-is-same"]], "OCCBrepLoop.sha256": [[151, "occbreploop-sha256"]], "OCCBrepLoop.to_json": [[152, "occbreploop-to-json"]], "OCCBrepLoop.to_jsonstring": [[153, "occbreploop-to-jsonstring"]], "OCCBrepLoop.validate_data": [[154, "occbreploop-validate-data"]], "OCCBrepVertex": [[155, "occbrepvertex"]], "OCCBrepVertex.ToString": [[156, "occbrepvertex-tostring"]], "OCCBrepVertex.copy": [[157, "occbrepvertex-copy"]], "OCCBrepVertex.from_json": [[158, "occbrepvertex-from-json"]], "OCCBrepVertex.from_jsonstring": [[159, "occbrepvertex-from-jsonstring"]], "OCCBrepVertex.from_point": [[160, "occbrepvertex-from-point"]], "OCCBrepVertex.is_equal": [[161, "occbrepvertex-is-equal"]], "OCCBrepVertex.is_same": [[162, "occbrepvertex-is-same"]], "OCCBrepVertex.sha256": [[163, "occbrepvertex-sha256"]], "OCCBrepVertex.to_json": [[164, "occbrepvertex-to-json"]], "OCCBrepVertex.to_jsonstring": [[165, "occbrepvertex-to-jsonstring"]], "OCCBrepVertex.validate_data": [[166, "occbrepvertex-validate-data"]], "array1_from_floats1": [[167, "array1-from-floats1"]], "array1_from_integers1": [[168, "array1-from-integers1"]], "array1_from_points1": [[169, "array1-from-points1"]], "array2_from_floats2": [[170, "array2-from-floats2"]], "array2_from_points2": [[171, "array2-from-points2"]], "ax2_to_compas": [[172, "ax2-to-compas"]], "ax3_to_compas": [[173, "ax3-to-compas"]], "axis_to_compas": [[174, "axis-to-compas"]], "axis_to_compas_vector": [[175, "axis-to-compas-vector"]], "axis_to_occ": [[176, "axis-to-occ"]], "bezier_to_compas": [[177, "bezier-to-compas"]], "bspline_to_compas": [[178, "bspline-to-compas"]], "circle_to_compas": [[179, "circle-to-compas"]], "circle_to_occ": [[180, "circle-to-occ"]], "compas_mesh_to_occ_shell": [[181, "compas-mesh-to-occ-shell"]], "compas_quadmesh_to_occ_shell": [[182, "compas-quadmesh-to-occ-shell"]], "compas_transformation_to_trsf": [[183, "compas-transformation-to-trsf"]], "compas_trimesh_to_occ_shell": [[184, "compas-trimesh-to-occ-shell"]], "cone_to_occ": [[185, "cone-to-occ"]], "cylinder_to_compas": [[186, "cylinder-to-compas"]], "cylinder_to_occ": [[187, "cylinder-to-occ"]], "direction_to_compas": [[188, "direction-to-compas"]], "direction_to_occ": [[189, "direction-to-occ"]], "ellipse_to_compas": [[190, "ellipse-to-compas"]], "ellipse_to_occ": [[191, "ellipse-to-occ"]], "floats2_from_array2": [[192, "floats2-from-array2"]], "frame_to_occ_ax2": [[193, "frame-to-occ-ax2"]], "frame_to_occ_ax3": [[194, "frame-to-occ-ax3"]], "harray1_from_points1": [[195, "harray1-from-points1"]], "hyperbola_to_compas": [[196, "hyperbola-to-compas"]], "line_to_compas": [[197, "line-to-compas"]], "line_to_occ": [[198, "line-to-occ"]], "location_to_compas": [[199, "location-to-compas"]], "ngon_to_face": [[200, "ngon-to-face"]], "parabola_to_compas": [[201, "parabola-to-compas"]], "plane_to_compas": [[202, "plane-to-compas"]], "plane_to_occ": [[203, "plane-to-occ"]], "plane_to_occ_ax2": [[204, "plane-to-occ-ax2"]], "plane_to_occ_ax3": [[205, "plane-to-occ-ax3"]], "point2d_to_compas": [[206, "point2d-to-compas"]], "point_to_compas": [[207, "point-to-compas"]], "point_to_occ": [[208, "point-to-occ"]], "points1_from_array1": [[209, "points1-from-array1"]], "points2_from_array2": [[210, "points2-from-array2"]], "quad_to_face": [[211, "quad-to-face"]], "sphere_to_compas": [[212, "sphere-to-compas"]], "sphere_to_occ": [[213, "sphere-to-occ"]], "torus_to_occ": [[214, "torus-to-occ"]], "triangle_to_face": [[215, "triangle-to-face"]], "vector2d_to_compas": [[216, "vector2d-to-compas"]], "vector_to_compas": [[217, "vector-to-compas"]], "vector_to_occ": [[218, "vector-to-occ"]], "OCCCurve": [[219, "occcurve"]], "OCCCurve.ToString": [[220, "occcurve-tostring"]], "OCCCurve.aabb": [[221, "occcurve-aabb"]], "OCCCurve.closest_parameters_curve": [[222, "occcurve-closest-parameters-curve"]], "OCCCurve.closest_point": [[223, "occcurve-closest-point"]], "OCCCurve.closest_points_curve": [[224, "occcurve-closest-points-curve"]], "OCCCurve.compute_aabb": [[225, "occcurve-compute-aabb"]], "OCCCurve.compute_obb": [[226, "occcurve-compute-obb"]], "OCCCurve.copy": [[227, "occcurve-copy"]], "OCCCurve.curvature_at": [[228, "occcurve-curvature-at"]], "OCCCurve.divide": [[229, "occcurve-divide"]], "OCCCurve.divide_by_count": [[230, "occcurve-divide-by-count"]], "OCCCurve.divide_by_length": [[231, "occcurve-divide-by-length"]], "OCCCurve.embedded": [[232, "occcurve-embedded"]], "OCCCurve.fair": [[233, "occcurve-fair"]], "OCCCurve.frame_at": [[234, "occcurve-frame-at"]], "OCCCurve.from_json": [[235, "occcurve-from-json"]], "OCCCurve.from_jsonstring": [[236, "occcurve-from-jsonstring"]], "OCCCurve.from_obj": [[237, "occcurve-from-obj"]], "OCCCurve.from_occ": [[238, "occcurve-from-occ"]], "OCCCurve.from_step": [[239, "occcurve-from-step"]], "OCCCurve.length": [[240, "occcurve-length"]], "OCCCurve.normal_at": [[241, "occcurve-normal-at"]], "OCCCurve.offset": [[242, "occcurve-offset"]], "OCCCurve.parameter_at_distance": [[243, "occcurve-parameter-at-distance"]], "OCCCurve.point_at": [[244, "occcurve-point-at"]], "OCCCurve.projected": [[245, "occcurve-projected"]], "OCCCurve.reverse": [[246, "occcurve-reverse"]], "OCCCurve.reversed": [[247, "occcurve-reversed"]], "OCCCurve.rotate": [[248, "occcurve-rotate"]], "OCCCurve.rotated": [[249, "occcurve-rotated"]], "OCCCurve.scale": [[250, "occcurve-scale"]], "OCCCurve.scaled": [[251, "occcurve-scaled"]], "OCCCurve.sha256": [[252, "occcurve-sha256"]], "OCCCurve.smooth": [[253, "occcurve-smooth"]], "OCCCurve.split": [[254, "occcurve-split"]], "OCCCurve.tangent_at": [[255, "occcurve-tangent-at"]], "OCCCurve.to_json": [[256, "occcurve-to-json"]], "OCCCurve.to_jsonstring": [[257, "occcurve-to-jsonstring"]], "OCCCurve.to_obj": [[258, "occcurve-to-obj"]], "OCCCurve.to_points": [[259, "occcurve-to-points"]], "OCCCurve.to_polygon": [[260, "occcurve-to-polygon"]], "OCCCurve.to_polyline": [[261, "occcurve-to-polyline"]], "OCCCurve.to_step": [[262, "occcurve-to-step"]], "OCCCurve.transform": [[263, "occcurve-transform"]], "OCCCurve.transformed": [[264, "occcurve-transformed"]], "OCCCurve.translate": [[265, "occcurve-translate"]], "OCCCurve.translated": [[266, "occcurve-translated"]], "OCCCurve.trim": [[267, "occcurve-trim"]], "OCCCurve.validate_data": [[268, "occcurve-validate-data"]], "OCCCurve2d": [[269, "occcurve2d"]], "OCCCurve2d.ToString": [[270, "occcurve2d-tostring"]], "OCCCurve2d.aabb": [[271, "occcurve2d-aabb"]], "OCCCurve2d.closest_point": [[272, "occcurve2d-closest-point"]], "OCCCurve2d.compute_aabb": [[273, "occcurve2d-compute-aabb"]], "OCCCurve2d.compute_obb": [[274, "occcurve2d-compute-obb"]], "OCCCurve2d.copy": [[275, "occcurve2d-copy"]], "OCCCurve2d.curvature_at": [[276, "occcurve2d-curvature-at"]], "OCCCurve2d.divide_by_count": [[277, "occcurve2d-divide-by-count"]], "OCCCurve2d.divide_by_length": [[278, "occcurve2d-divide-by-length"]], "OCCCurve2d.fair": [[279, "occcurve2d-fair"]], "OCCCurve2d.frame_at": [[280, "occcurve2d-frame-at"]], "OCCCurve2d.from_json": [[281, "occcurve2d-from-json"]], "OCCCurve2d.from_jsonstring": [[282, "occcurve2d-from-jsonstring"]], "OCCCurve2d.from_obj": [[283, "occcurve2d-from-obj"]], "OCCCurve2d.from_occ": [[284, "occcurve2d-from-occ"]], "OCCCurve2d.from_step": [[285, "occcurve2d-from-step"]], "OCCCurve2d.length": [[286, "occcurve2d-length"]], "OCCCurve2d.normal_at": [[287, "occcurve2d-normal-at"]], "OCCCurve2d.offset": [[288, "occcurve2d-offset"]], "OCCCurve2d.point_at": [[289, "occcurve2d-point-at"]], "OCCCurve2d.reverse": [[290, "occcurve2d-reverse"]], "OCCCurve2d.reversed": [[291, "occcurve2d-reversed"]], "OCCCurve2d.rotate": [[292, "occcurve2d-rotate"]], "OCCCurve2d.rotated": [[293, "occcurve2d-rotated"]], "OCCCurve2d.scale": [[294, "occcurve2d-scale"]], "OCCCurve2d.scaled": [[295, "occcurve2d-scaled"]], "OCCCurve2d.sha256": [[296, "occcurve2d-sha256"]], "OCCCurve2d.smooth": [[297, "occcurve2d-smooth"]], "OCCCurve2d.split": [[298, "occcurve2d-split"]], "OCCCurve2d.tangent_at": [[299, "occcurve2d-tangent-at"]], "OCCCurve2d.to_json": [[300, "occcurve2d-to-json"]], "OCCCurve2d.to_jsonstring": [[301, "occcurve2d-to-jsonstring"]], "OCCCurve2d.to_obj": [[302, "occcurve2d-to-obj"]], "OCCCurve2d.to_points": [[303, "occcurve2d-to-points"]], "OCCCurve2d.to_polygon": [[304, "occcurve2d-to-polygon"]], "OCCCurve2d.to_polyline": [[305, "occcurve2d-to-polyline"]], "OCCCurve2d.to_step": [[306, "occcurve2d-to-step"]], "OCCCurve2d.transform": [[307, "occcurve2d-transform"]], "OCCCurve2d.transformed": [[308, "occcurve2d-transformed"]], "OCCCurve2d.translate": [[309, "occcurve2d-translate"]], "OCCCurve2d.translated": [[310, "occcurve2d-translated"]], "OCCCurve2d.trim": [[311, "occcurve2d-trim"]], "OCCCurve2d.validate_data": [[312, "occcurve2d-validate-data"]], "OCCExtrusionSurface": [[313, "occextrusionsurface"]], "OCCExtrusionSurface.ToString": [[314, "occextrusionsurface-tostring"]], "OCCExtrusionSurface.aabb": [[315, "occextrusionsurface-aabb"]], "OCCExtrusionSurface.boundary": [[316, "occextrusionsurface-boundary"]], "OCCExtrusionSurface.closest_point": [[317, "occextrusionsurface-closest-point"]], "OCCExtrusionSurface.compute": [[318, "occextrusionsurface-compute"]], "OCCExtrusionSurface.compute_aabb": [[319, "occextrusionsurface-compute-aabb"]], "OCCExtrusionSurface.compute_obb": [[320, "occextrusionsurface-compute-obb"]], "OCCExtrusionSurface.copy": [[321, "occextrusionsurface-copy"]], "OCCExtrusionSurface.curvature_at": [[322, "occextrusionsurface-curvature-at"]], "OCCExtrusionSurface.frame_at": [[323, "occextrusionsurface-frame-at"]], "OCCExtrusionSurface.from_face": [[324, "occextrusionsurface-from-face"]], "OCCExtrusionSurface.from_json": [[325, "occextrusionsurface-from-json"]], "OCCExtrusionSurface.from_jsonstring": [[326, "occextrusionsurface-from-jsonstring"]], "OCCExtrusionSurface.from_obj": [[327, "occextrusionsurface-from-obj"]], "OCCExtrusionSurface.from_occ": [[328, "occextrusionsurface-from-occ"]], "OCCExtrusionSurface.from_plane": [[329, "occextrusionsurface-from-plane"]], "OCCExtrusionSurface.from_step": [[330, "occextrusionsurface-from-step"]], "OCCExtrusionSurface.gaussian_curvature_at": [[331, "occextrusionsurface-gaussian-curvature-at"]], "OCCExtrusionSurface.intersections_with_curve": [[332, "occextrusionsurface-intersections-with-curve"]], "OCCExtrusionSurface.intersections_with_line": [[333, "occextrusionsurface-intersections-with-line"]], "OCCExtrusionSurface.intersections_with_plane": [[334, "occextrusionsurface-intersections-with-plane"]], "OCCExtrusionSurface.isocurve_u": [[335, "occextrusionsurface-isocurve-u"]], "OCCExtrusionSurface.isocurve_v": [[336, "occextrusionsurface-isocurve-v"]], "OCCExtrusionSurface.mean_curvature_at": [[337, "occextrusionsurface-mean-curvature-at"]], "OCCExtrusionSurface.normal_at": [[338, "occextrusionsurface-normal-at"]], "OCCExtrusionSurface.obb": [[339, "occextrusionsurface-obb"]], "OCCExtrusionSurface.point_at": [[340, "occextrusionsurface-point-at"]], "OCCExtrusionSurface.pointgrid": [[341, "occextrusionsurface-pointgrid"]], "OCCExtrusionSurface.rotate": [[342, "occextrusionsurface-rotate"]], "OCCExtrusionSurface.rotated": [[343, "occextrusionsurface-rotated"]], "OCCExtrusionSurface.scale": [[344, "occextrusionsurface-scale"]], "OCCExtrusionSurface.scaled": [[345, "occextrusionsurface-scaled"]], "OCCExtrusionSurface.sha256": [[346, "occextrusionsurface-sha256"]], "OCCExtrusionSurface.space_u": [[347, "occextrusionsurface-space-u"]], "OCCExtrusionSurface.space_v": [[348, "occextrusionsurface-space-v"]], "OCCExtrusionSurface.to_brep": [[349, "occextrusionsurface-to-brep"]], "OCCExtrusionSurface.to_json": [[350, "occextrusionsurface-to-json"]], "OCCExtrusionSurface.to_jsonstring": [[351, "occextrusionsurface-to-jsonstring"]], "OCCExtrusionSurface.to_mesh": [[352, "occextrusionsurface-to-mesh"]], "OCCExtrusionSurface.to_polyhedron": [[353, "occextrusionsurface-to-polyhedron"]], "OCCExtrusionSurface.to_quads": [[354, "occextrusionsurface-to-quads"]], "OCCExtrusionSurface.to_step": [[355, "occextrusionsurface-to-step"]], "OCCExtrusionSurface.to_tesselation": [[356, "occextrusionsurface-to-tesselation"]], "OCCExtrusionSurface.to_triangles": [[357, "occextrusionsurface-to-triangles"]], "OCCExtrusionSurface.to_vertices_and_faces": [[358, "occextrusionsurface-to-vertices-and-faces"]], "OCCExtrusionSurface.transform": [[359, "occextrusionsurface-transform"]], "OCCExtrusionSurface.transformed": [[360, "occextrusionsurface-transformed"]], "OCCExtrusionSurface.translate": [[361, "occextrusionsurface-translate"]], "OCCExtrusionSurface.translated": [[362, "occextrusionsurface-translated"]], "OCCExtrusionSurface.validate_data": [[363, "occextrusionsurface-validate-data"]], "OCCNurbsCurve": [[364, "occnurbscurve"]], "OCCNurbsCurve.ToString": [[365, "occnurbscurve-tostring"]], "OCCNurbsCurve.aabb": [[366, "occnurbscurve-aabb"]], "OCCNurbsCurve.closest_parameters_curve": [[367, "occnurbscurve-closest-parameters-curve"]], "OCCNurbsCurve.closest_point": [[368, "occnurbscurve-closest-point"]], "OCCNurbsCurve.closest_points_curve": [[369, "occnurbscurve-closest-points-curve"]], "OCCNurbsCurve.compute_aabb": [[370, "occnurbscurve-compute-aabb"]], "OCCNurbsCurve.compute_obb": [[371, "occnurbscurve-compute-obb"]], "OCCNurbsCurve.copy": [[372, "occnurbscurve-copy"]], "OCCNurbsCurve.curvature_at": [[373, "occnurbscurve-curvature-at"]], "OCCNurbsCurve.divide": [[374, "occnurbscurve-divide"]], "OCCNurbsCurve.divide_by_count": [[375, "occnurbscurve-divide-by-count"]], "OCCNurbsCurve.divide_by_length": [[376, "occnurbscurve-divide-by-length"]], "OCCNurbsCurve.elevate_degree": [[377, "occnurbscurve-elevate-degree"]], "OCCNurbsCurve.embedded": [[378, "occnurbscurve-embedded"]], "OCCNurbsCurve.fair": [[379, "occnurbscurve-fair"]], "OCCNurbsCurve.frame_at": [[380, "occnurbscurve-frame-at"]], "OCCNurbsCurve.from_arc": [[381, "occnurbscurve-from-arc"]], "OCCNurbsCurve.from_circle": [[382, "occnurbscurve-from-circle"]], "OCCNurbsCurve.from_ellipse": [[383, "occnurbscurve-from-ellipse"]], "OCCNurbsCurve.from_interpolation": [[384, "occnurbscurve-from-interpolation"]], "OCCNurbsCurve.from_json": [[385, "occnurbscurve-from-json"]], "OCCNurbsCurve.from_jsonstring": [[386, "occnurbscurve-from-jsonstring"]], "OCCNurbsCurve.from_line": [[387, "occnurbscurve-from-line"]], "OCCNurbsCurve.from_native": [[388, "occnurbscurve-from-native"]], "OCCNurbsCurve.from_obj": [[389, "occnurbscurve-from-obj"]], "OCCNurbsCurve.from_occ": [[390, "occnurbscurve-from-occ"]], "OCCNurbsCurve.from_parameters": [[391, "occnurbscurve-from-parameters"]], "OCCNurbsCurve.from_points": [[392, "occnurbscurve-from-points"]], "OCCNurbsCurve.from_step": [[393, "occnurbscurve-from-step"]], "OCCNurbsCurve.insert_knot": [[394, "occnurbscurve-insert-knot"]], "OCCNurbsCurve.join": [[395, "occnurbscurve-join"]], "OCCNurbsCurve.joined": [[396, "occnurbscurve-joined"]], "OCCNurbsCurve.length": [[397, "occnurbscurve-length"]], "OCCNurbsCurve.normal_at": [[398, "occnurbscurve-normal-at"]], "OCCNurbsCurve.offset": [[399, "occnurbscurve-offset"]], "OCCNurbsCurve.parameter_at_distance": [[400, "occnurbscurve-parameter-at-distance"]], "OCCNurbsCurve.point_at": [[401, "occnurbscurve-point-at"]], "OCCNurbsCurve.projected": [[402, "occnurbscurve-projected"]], "OCCNurbsCurve.reduce_degree": [[403, "occnurbscurve-reduce-degree"]], "OCCNurbsCurve.refine_knot": [[404, "occnurbscurve-refine-knot"]], "OCCNurbsCurve.remove_knot": [[405, "occnurbscurve-remove-knot"]], "OCCNurbsCurve.reverse": [[406, "occnurbscurve-reverse"]], "OCCNurbsCurve.reversed": [[407, "occnurbscurve-reversed"]], "OCCNurbsCurve.rotate": [[408, "occnurbscurve-rotate"]], "OCCNurbsCurve.rotated": [[409, "occnurbscurve-rotated"]], "OCCNurbsCurve.scale": [[410, "occnurbscurve-scale"]], "OCCNurbsCurve.scaled": [[411, "occnurbscurve-scaled"]], "OCCNurbsCurve.segment": [[412, "occnurbscurve-segment"]], "OCCNurbsCurve.segmented": [[413, "occnurbscurve-segmented"]], "OCCNurbsCurve.sha256": [[414, "occnurbscurve-sha256"]], "OCCNurbsCurve.smooth": [[415, "occnurbscurve-smooth"]], "OCCNurbsCurve.split": [[416, "occnurbscurve-split"]], "OCCNurbsCurve.tangent_at": [[417, "occnurbscurve-tangent-at"]], "OCCNurbsCurve.to_json": [[418, "occnurbscurve-to-json"]], "OCCNurbsCurve.to_jsonstring": [[419, "occnurbscurve-to-jsonstring"]], "OCCNurbsCurve.to_obj": [[420, "occnurbscurve-to-obj"]], "OCCNurbsCurve.to_points": [[421, "occnurbscurve-to-points"]], "OCCNurbsCurve.to_polygon": [[422, "occnurbscurve-to-polygon"]], "OCCNurbsCurve.to_polyline": [[423, "occnurbscurve-to-polyline"]], "OCCNurbsCurve.to_step": [[424, "occnurbscurve-to-step"]], "OCCNurbsCurve.transform": [[425, "occnurbscurve-transform"]], "OCCNurbsCurve.transformed": [[426, "occnurbscurve-transformed"]], "OCCNurbsCurve.translate": [[427, "occnurbscurve-translate"]], "OCCNurbsCurve.translated": [[428, "occnurbscurve-translated"]], "OCCNurbsCurve.trim": [[429, "occnurbscurve-trim"]], "OCCNurbsCurve.validate_data": [[430, "occnurbscurve-validate-data"]], "OCCNurbsSurface": [[431, "occnurbssurface"]], "OCCNurbsSurface.ToString": [[432, "occnurbssurface-tostring"]], "OCCNurbsSurface.aabb": [[433, "occnurbssurface-aabb"]], "OCCNurbsSurface.boundary": [[434, "occnurbssurface-boundary"]], "OCCNurbsSurface.closest_point": [[435, "occnurbssurface-closest-point"]], "OCCNurbsSurface.compute_aabb": [[436, "occnurbssurface-compute-aabb"]], "OCCNurbsSurface.compute_obb": [[437, "occnurbssurface-compute-obb"]], "OCCNurbsSurface.copy": [[438, "occnurbssurface-copy"]], "OCCNurbsSurface.curvature_at": [[439, "occnurbssurface-curvature-at"]], "OCCNurbsSurface.frame_at": [[440, "occnurbssurface-frame-at"]], "OCCNurbsSurface.from_extrusion": [[441, "occnurbssurface-from-extrusion"]], "OCCNurbsSurface.from_face": [[442, "occnurbssurface-from-face"]], "OCCNurbsSurface.from_fill": [[443, "occnurbssurface-from-fill"]], "OCCNurbsSurface.from_interpolation": [[444, "occnurbssurface-from-interpolation"]], "OCCNurbsSurface.from_json": [[445, "occnurbssurface-from-json"]], "OCCNurbsSurface.from_jsonstring": [[446, "occnurbssurface-from-jsonstring"]], "OCCNurbsSurface.from_meshgrid": [[447, "occnurbssurface-from-meshgrid"]], "OCCNurbsSurface.from_native": [[448, "occnurbssurface-from-native"]], "OCCNurbsSurface.from_obj": [[449, "occnurbssurface-from-obj"]], "OCCNurbsSurface.from_occ": [[450, "occnurbssurface-from-occ"]], "OCCNurbsSurface.from_parameters": [[451, "occnurbssurface-from-parameters"]], "OCCNurbsSurface.from_plane": [[452, "occnurbssurface-from-plane"]], "OCCNurbsSurface.from_points": [[453, "occnurbssurface-from-points"]], "OCCNurbsSurface.from_step": [[454, "occnurbssurface-from-step"]], "OCCNurbsSurface.gaussian_curvature_at": [[455, "occnurbssurface-gaussian-curvature-at"]], "OCCNurbsSurface.intersections_with_curve": [[456, "occnurbssurface-intersections-with-curve"]], "OCCNurbsSurface.intersections_with_line": [[457, "occnurbssurface-intersections-with-line"]], "OCCNurbsSurface.intersections_with_plane": [[458, "occnurbssurface-intersections-with-plane"]], "OCCNurbsSurface.isocurve_u": [[459, "occnurbssurface-isocurve-u"]], "OCCNurbsSurface.isocurve_v": [[460, "occnurbssurface-isocurve-v"]], "OCCNurbsSurface.mean_curvature_at": [[461, "occnurbssurface-mean-curvature-at"]], "OCCNurbsSurface.normal_at": [[462, "occnurbssurface-normal-at"]], "OCCNurbsSurface.obb": [[463, "occnurbssurface-obb"]], "OCCNurbsSurface.point_at": [[464, "occnurbssurface-point-at"]], "OCCNurbsSurface.pointgrid": [[465, "occnurbssurface-pointgrid"]], "OCCNurbsSurface.rotate": [[466, "occnurbssurface-rotate"]], "OCCNurbsSurface.rotated": [[467, "occnurbssurface-rotated"]], "OCCNurbsSurface.scale": [[468, "occnurbssurface-scale"]], "OCCNurbsSurface.scaled": [[469, "occnurbssurface-scaled"]], "OCCNurbsSurface.sha256": [[470, "occnurbssurface-sha256"]], "OCCNurbsSurface.space_u": [[471, "occnurbssurface-space-u"]], "OCCNurbsSurface.space_v": [[472, "occnurbssurface-space-v"]], "OCCNurbsSurface.to_brep": [[473, "occnurbssurface-to-brep"]], "OCCNurbsSurface.to_json": [[474, "occnurbssurface-to-json"]], "OCCNurbsSurface.to_jsonstring": [[475, "occnurbssurface-to-jsonstring"]], "OCCNurbsSurface.to_mesh": [[476, "occnurbssurface-to-mesh"]], "OCCNurbsSurface.to_polyhedron": [[477, "occnurbssurface-to-polyhedron"]], "OCCNurbsSurface.to_quads": [[478, "occnurbssurface-to-quads"]], "OCCNurbsSurface.to_step": [[479, "occnurbssurface-to-step"]], "OCCNurbsSurface.to_tesselation": [[480, "occnurbssurface-to-tesselation"]], "OCCNurbsSurface.to_triangles": [[481, "occnurbssurface-to-triangles"]], "OCCNurbsSurface.to_vertices_and_faces": [[482, "occnurbssurface-to-vertices-and-faces"]], "OCCNurbsSurface.transform": [[483, "occnurbssurface-transform"]], "OCCNurbsSurface.transformed": [[484, "occnurbssurface-transformed"]], "OCCNurbsSurface.translate": [[485, "occnurbssurface-translate"]], "OCCNurbsSurface.translated": [[486, "occnurbssurface-translated"]], "OCCNurbsSurface.validate_data": [[487, "occnurbssurface-validate-data"]], "OCCRevolutionSurface": [[488, "occrevolutionsurface"]], "OCCRevolutionSurface.ToString": [[489, "occrevolutionsurface-tostring"]], "OCCRevolutionSurface.aabb": [[490, "occrevolutionsurface-aabb"]], "OCCRevolutionSurface.boundary": [[491, "occrevolutionsurface-boundary"]], "OCCRevolutionSurface.closest_point": [[492, "occrevolutionsurface-closest-point"]], "OCCRevolutionSurface.compute": [[493, "occrevolutionsurface-compute"]], "OCCRevolutionSurface.compute_aabb": [[494, "occrevolutionsurface-compute-aabb"]], "OCCRevolutionSurface.compute_obb": [[495, "occrevolutionsurface-compute-obb"]], "OCCRevolutionSurface.copy": [[496, "occrevolutionsurface-copy"]], "OCCRevolutionSurface.curvature_at": [[497, "occrevolutionsurface-curvature-at"]], "OCCRevolutionSurface.frame_at": [[498, "occrevolutionsurface-frame-at"]], "OCCRevolutionSurface.from_face": [[499, "occrevolutionsurface-from-face"]], "OCCRevolutionSurface.from_json": [[500, "occrevolutionsurface-from-json"]], "OCCRevolutionSurface.from_jsonstring": [[501, "occrevolutionsurface-from-jsonstring"]], "OCCRevolutionSurface.from_obj": [[502, "occrevolutionsurface-from-obj"]], "OCCRevolutionSurface.from_occ": [[503, "occrevolutionsurface-from-occ"]], "OCCRevolutionSurface.from_plane": [[504, "occrevolutionsurface-from-plane"]], "OCCRevolutionSurface.from_step": [[505, "occrevolutionsurface-from-step"]], "OCCRevolutionSurface.gaussian_curvature_at": [[506, "occrevolutionsurface-gaussian-curvature-at"]], "OCCRevolutionSurface.intersections_with_curve": [[507, "occrevolutionsurface-intersections-with-curve"]], "OCCRevolutionSurface.intersections_with_line": [[508, "occrevolutionsurface-intersections-with-line"]], "OCCRevolutionSurface.intersections_with_plane": [[509, "occrevolutionsurface-intersections-with-plane"]], "OCCRevolutionSurface.isocurve_u": [[510, "occrevolutionsurface-isocurve-u"]], "OCCRevolutionSurface.isocurve_v": [[511, "occrevolutionsurface-isocurve-v"]], "OCCRevolutionSurface.mean_curvature_at": [[512, "occrevolutionsurface-mean-curvature-at"]], "OCCRevolutionSurface.normal_at": [[513, "occrevolutionsurface-normal-at"]], "OCCRevolutionSurface.obb": [[514, "occrevolutionsurface-obb"]], "OCCRevolutionSurface.point_at": [[515, "occrevolutionsurface-point-at"]], "OCCRevolutionSurface.pointgrid": [[516, "occrevolutionsurface-pointgrid"]], "OCCRevolutionSurface.rotate": [[517, "occrevolutionsurface-rotate"]], "OCCRevolutionSurface.rotated": [[518, "occrevolutionsurface-rotated"]], "OCCRevolutionSurface.scale": [[519, "occrevolutionsurface-scale"]], "OCCRevolutionSurface.scaled": [[520, "occrevolutionsurface-scaled"]], "OCCRevolutionSurface.sha256": [[521, "occrevolutionsurface-sha256"]], "OCCRevolutionSurface.space_u": [[522, "occrevolutionsurface-space-u"]], "OCCRevolutionSurface.space_v": [[523, "occrevolutionsurface-space-v"]], "OCCRevolutionSurface.to_brep": [[524, "occrevolutionsurface-to-brep"]], "OCCRevolutionSurface.to_json": [[525, "occrevolutionsurface-to-json"]], "OCCRevolutionSurface.to_jsonstring": [[526, "occrevolutionsurface-to-jsonstring"]], "OCCRevolutionSurface.to_mesh": [[527, "occrevolutionsurface-to-mesh"]], "OCCRevolutionSurface.to_polyhedron": [[528, "occrevolutionsurface-to-polyhedron"]], "OCCRevolutionSurface.to_quads": [[529, "occrevolutionsurface-to-quads"]], "OCCRevolutionSurface.to_step": [[530, "occrevolutionsurface-to-step"]], "OCCRevolutionSurface.to_tesselation": [[531, "occrevolutionsurface-to-tesselation"]], "OCCRevolutionSurface.to_triangles": [[532, "occrevolutionsurface-to-triangles"]], "OCCRevolutionSurface.to_vertices_and_faces": [[533, "occrevolutionsurface-to-vertices-and-faces"]], "OCCRevolutionSurface.transform": [[534, "occrevolutionsurface-transform"]], "OCCRevolutionSurface.transformed": [[535, "occrevolutionsurface-transformed"]], "OCCRevolutionSurface.translate": [[536, "occrevolutionsurface-translate"]], "OCCRevolutionSurface.translated": [[537, "occrevolutionsurface-translated"]], "OCCRevolutionSurface.validate_data": [[538, "occrevolutionsurface-validate-data"]], "OCCSurface": [[539, "occsurface"]], "OCCSurface.ToString": [[540, "occsurface-tostring"]], "OCCSurface.aabb": [[541, "occsurface-aabb"]], "OCCSurface.boundary": [[542, "occsurface-boundary"]], "OCCSurface.closest_point": [[543, "occsurface-closest-point"]], "OCCSurface.compute_aabb": [[544, "occsurface-compute-aabb"]], "OCCSurface.compute_obb": [[545, "occsurface-compute-obb"]], "OCCSurface.copy": [[546, "occsurface-copy"]], "OCCSurface.curvature_at": [[547, "occsurface-curvature-at"]], "OCCSurface.frame_at": [[548, "occsurface-frame-at"]], "OCCSurface.from_face": [[549, "occsurface-from-face"]], "OCCSurface.from_json": [[550, "occsurface-from-json"]], "OCCSurface.from_jsonstring": [[551, "occsurface-from-jsonstring"]], "OCCSurface.from_obj": [[552, "occsurface-from-obj"]], "OCCSurface.from_occ": [[553, "occsurface-from-occ"]], "OCCSurface.from_plane": [[554, "occsurface-from-plane"]], "OCCSurface.from_step": [[555, "occsurface-from-step"]], "OCCSurface.gaussian_curvature_at": [[556, "occsurface-gaussian-curvature-at"]], "OCCSurface.intersections_with_curve": [[557, "occsurface-intersections-with-curve"]], "OCCSurface.intersections_with_line": [[558, "occsurface-intersections-with-line"]], "OCCSurface.intersections_with_plane": [[559, "occsurface-intersections-with-plane"]], "OCCSurface.isocurve_u": [[560, "occsurface-isocurve-u"]], "OCCSurface.isocurve_v": [[561, "occsurface-isocurve-v"]], "OCCSurface.mean_curvature_at": [[562, "occsurface-mean-curvature-at"]], "OCCSurface.normal_at": [[563, "occsurface-normal-at"]], "OCCSurface.obb": [[564, "occsurface-obb"]], "OCCSurface.point_at": [[565, "occsurface-point-at"]], "OCCSurface.pointgrid": [[566, "occsurface-pointgrid"]], "OCCSurface.rotate": [[567, "occsurface-rotate"]], "OCCSurface.rotated": [[568, "occsurface-rotated"]], "OCCSurface.scale": [[569, "occsurface-scale"]], "OCCSurface.scaled": [[570, "occsurface-scaled"]], "OCCSurface.sha256": [[571, "occsurface-sha256"]], "OCCSurface.space_u": [[572, "occsurface-space-u"]], "OCCSurface.space_v": [[573, "occsurface-space-v"]], "OCCSurface.to_brep": [[574, "occsurface-to-brep"]], "OCCSurface.to_json": [[575, "occsurface-to-json"]], "OCCSurface.to_jsonstring": [[576, "occsurface-to-jsonstring"]], "OCCSurface.to_mesh": [[577, "occsurface-to-mesh"]], "OCCSurface.to_polyhedron": [[578, "occsurface-to-polyhedron"]], "OCCSurface.to_quads": [[579, "occsurface-to-quads"]], "OCCSurface.to_step": [[580, "occsurface-to-step"]], "OCCSurface.to_tesselation": [[581, "occsurface-to-tesselation"]], "OCCSurface.to_triangles": [[582, "occsurface-to-triangles"]], "OCCSurface.to_vertices_and_faces": [[583, "occsurface-to-vertices-and-faces"]], "OCCSurface.transform": [[584, "occsurface-transform"]], "OCCSurface.transformed": [[585, "occsurface-transformed"]], "OCCSurface.translate": [[586, "occsurface-translate"]], "OCCSurface.translated": [[587, "occsurface-translated"]], "OCCSurface.validate_data": [[588, "occsurface-validate-data"]], "Examples": [[589, "examples"]], "Explore Brep Topology": [[590, "explore-brep-topology"]], "Add a Fillet to the Edges of a Brep": [[591, "add-a-fillet-to-the-edges-of-a-brep"]], "Brep Shape From Booleans": [[592, "brep-shape-from-booleans"]], "Brep From Mesh": [[593, "brep-from-mesh"]], "Find the Overlap Between Two Breps": [[594, "find-the-overlap-between-two-breps"]], "Slice a Brep With a Plane": [[595, "slice-a-brep-with-a-plane"]], "Split a Brep With a Plane": [[596, "split-a-brep-with-a-plane"]], "Trim a Brep With a Plane": [[597, "trim-a-brep-with-a-plane"]], "Brep with Hole": [[598, "brep-with-hole"]], "Brep with Holes": [[599, "brep-with-holes"]], "Breps": [[600, "breps"]], "Curve Closest Parameters Curve": [[601, "curve-closest-parameters-curve"]], "Curve Closest Point": [[602, "curve-closest-point"]], "Curve Comparison 1": [[603, "curve-comparison-1"]], "Curve Comparison 2": [[604, "curve-comparison-2"]], "Curve Divide": [[605, "curve-divide"]], "Curve From Circle": [[606, "curve-from-circle"]], "Curve From Interpolation": [[607, "curve-from-interpolation"]], "Curve From Line": [[608, "curve-from-line"]], "Curve From Parameters": [[609, "curve-from-parameters"]], "Curve From Control Points": [[610, "curve-from-control-points"]], "Curve Joining": [[611, "curve-joining"]], "Curve Segmentation": [[612, "curve-segmentation"]], "Surface Axis-Aligned Bounding Box": [[615, "surface-axis-aligned-bounding-box"]], "Surface Frames": [[616, "surface-frames"]], "Surface From Extrusion 1": [[617, "surface-from-extrusion-1"]], "Surface From Extrusion 2": [[618, "surface-from-extrusion-2"]], "Surface From Fill": [[619, "surface-from-fill"]], "Surface From Meshgrid": [[620, "surface-from-meshgrid"]], "Surface From Parameters": [[621, "surface-from-parameters"]], "Surface From Points": [[622, "surface-from-points"]], "Surface Intersections With Line": [[623, "surface-intersections-with-line"]], "Surface Isocurves": [[624, "surface-isocurves"]], "Surface JSON Data": [[625, "surface-json-data"]], "Surface With Random Control Points": [[626, "surface-with-random-control-points"]], "Surface Points Over UV Space": [[627, "surface-points-over-uv-space"]], "COMPAS OCC": [[628, "compas-occ"]], "Table of Contents": [[628, "table-of-contents"]], "Indices and tables": [[628, "indices-and-tables"]], "References": [[628, "references"]], "Installation": [[629, "installation"]], "Stable": [[629, "stable"]], "Development": [[629, "development"]], "License": [[630, "license"]], "Tutorial": [[631, "tutorial"]], "Working with Curves": [[631, "working-with-curves"]], "Working with Surfaces": [[631, "working-with-surfaces"]], "Working with Breps": [[631, "working-with-breps"]], "Visualisation": [[631, "visualisation"]], "Using the plugin system": [[631, "using-the-plugin-system"]]}, "indexentries": {"occbrep (class in compas_occ.brep)": [[7, "compas_occ.brep.OCCBrep"]], "tostring() (compas_occ.brep.occbrep method)": [[8, "compas_occ.brep.OCCBrep.ToString"]], "check() (compas_occ.brep.occbrep method)": [[9, "compas_occ.brep.OCCBrep.check"]], "compute_aabb() (compas_occ.brep.occbrep method)": [[10, "compas_occ.brep.OCCBrep.compute_aabb"]], "compute_obb() (compas_occ.brep.occbrep method)": [[11, "compas_occ.brep.OCCBrep.compute_obb"]], "contains() (compas_occ.brep.occbrep method)": [[12, "compas_occ.brep.OCCBrep.contains"]], "contours() (compas_occ.brep.occbrep method)": [[13, "compas_occ.brep.OCCBrep.contours"]], "copy() (compas_occ.brep.occbrep method)": [[14, "compas_occ.brep.OCCBrep.copy"]], "cull_unused_edges() (compas_occ.brep.occbrep method)": [[15, "compas_occ.brep.OCCBrep.cull_unused_edges"]], "cull_unused_faces() (compas_occ.brep.occbrep method)": [[16, "compas_occ.brep.OCCBrep.cull_unused_faces"]], "cull_unused_loops() (compas_occ.brep.occbrep method)": [[17, "compas_occ.brep.OCCBrep.cull_unused_loops"]], "cull_unused_vertices() (compas_occ.brep.occbrep method)": [[18, "compas_occ.brep.OCCBrep.cull_unused_vertices"]], "edge_faces() (compas_occ.brep.occbrep method)": [[19, "compas_occ.brep.OCCBrep.edge_faces"]], "edge_loop() (compas_occ.brep.occbrep method)": [[20, "compas_occ.brep.OCCBrep.edge_loop"]], "edge_loops() (compas_occ.brep.occbrep method)": [[21, "compas_occ.brep.OCCBrep.edge_loops"]], "fillet() (compas_occ.brep.occbrep method)": [[22, "compas_occ.brep.OCCBrep.fillet"]], "filleted() (compas_occ.brep.occbrep method)": [[23, "compas_occ.brep.OCCBrep.filleted"]], "fix() (compas_occ.brep.occbrep method)": [[24, "compas_occ.brep.OCCBrep.fix"]], "from_boolean_difference() (compas_occ.brep.occbrep class method)": [[25, "compas_occ.brep.OCCBrep.from_boolean_difference"]], "from_boolean_intersection() (compas_occ.brep.occbrep class method)": [[26, "compas_occ.brep.OCCBrep.from_boolean_intersection"]], "from_boolean_union() (compas_occ.brep.occbrep class method)": [[27, "compas_occ.brep.OCCBrep.from_boolean_union"]], "from_box() (compas_occ.brep.occbrep class method)": [[28, "compas_occ.brep.OCCBrep.from_box"]], "from_brepfaces() (compas_occ.brep.occbrep class method)": [[29, "compas_occ.brep.OCCBrep.from_brepfaces"]], "from_breps() (compas_occ.brep.occbrep class method)": [[30, "compas_occ.brep.OCCBrep.from_breps"]], "from_cone() (compas_occ.brep.occbrep class method)": [[31, "compas_occ.brep.OCCBrep.from_cone"]], "from_curves() (compas_occ.brep.occbrep class method)": [[32, "compas_occ.brep.OCCBrep.from_curves"]], "from_cylinder() (compas_occ.brep.occbrep class method)": [[33, "compas_occ.brep.OCCBrep.from_cylinder"]], "from_extrusion() (compas_occ.brep.occbrep class method)": [[34, "compas_occ.brep.OCCBrep.from_extrusion"]], "from_iges() (compas_occ.brep.occbrep class method)": [[35, "compas_occ.brep.OCCBrep.from_iges"]], "from_json() (compas_occ.brep.occbrep class method)": [[36, "compas_occ.brep.OCCBrep.from_json"]], "from_jsonstring() (compas_occ.brep.occbrep class method)": [[37, "compas_occ.brep.OCCBrep.from_jsonstring"]], "from_loft() (compas_occ.brep.occbrep class method)": [[38, "compas_occ.brep.OCCBrep.from_loft"]], "from_mesh() (compas_occ.brep.occbrep class method)": [[39, "compas_occ.brep.OCCBrep.from_mesh"]], "from_native() (compas_occ.brep.occbrep class method)": [[40, "compas_occ.brep.OCCBrep.from_native"]], "from_pipe() (compas_occ.brep.occbrep class method)": [[41, "compas_occ.brep.OCCBrep.from_pipe"]], "from_plane() (compas_occ.brep.occbrep class method)": [[42, "compas_occ.brep.OCCBrep.from_plane"]], "from_planes() (compas_occ.brep.occbrep class method)": [[43, "compas_occ.brep.OCCBrep.from_planes"]], "from_polygons() (compas_occ.brep.occbrep class method)": [[44, "compas_occ.brep.OCCBrep.from_polygons"]], "from_shape() (compas_occ.brep.occbrep class method)": [[45, "compas_occ.brep.OCCBrep.from_shape"]], "from_sphere() (compas_occ.brep.occbrep class method)": [[46, "compas_occ.brep.OCCBrep.from_sphere"]], "from_step() (compas_occ.brep.occbrep class method)": [[47, "compas_occ.brep.OCCBrep.from_step"]], "from_surface() (compas_occ.brep.occbrep class method)": [[48, "compas_occ.brep.OCCBrep.from_surface"]], "from_sweep() (compas_occ.brep.occbrep class method)": [[49, "compas_occ.brep.OCCBrep.from_sweep"]], "from_torus() (compas_occ.brep.occbrep class method)": [[50, "compas_occ.brep.OCCBrep.from_torus"]], "heal() (compas_occ.brep.occbrep method)": [[51, "compas_occ.brep.OCCBrep.heal"]], "make_solid() (compas_occ.brep.occbrep method)": [[52, "compas_occ.brep.OCCBrep.make_solid"]], "overlap() (compas_occ.brep.occbrep method)": [[53, "compas_occ.brep.OCCBrep.overlap"]], "rotate() (compas_occ.brep.occbrep method)": [[54, "compas_occ.brep.OCCBrep.rotate"]], "rotated() (compas_occ.brep.occbrep method)": [[55, "compas_occ.brep.OCCBrep.rotated"]], "scale() (compas_occ.brep.occbrep method)": [[56, "compas_occ.brep.OCCBrep.scale"]], "scaled() (compas_occ.brep.occbrep method)": [[57, "compas_occ.brep.OCCBrep.scaled"]], "sew() (compas_occ.brep.occbrep method)": [[58, "compas_occ.brep.OCCBrep.sew"]], "sha256() (compas_occ.brep.occbrep method)": [[59, "compas_occ.brep.OCCBrep.sha256"]], "simplify() (compas_occ.brep.occbrep method)": [[60, "compas_occ.brep.OCCBrep.simplify"]], "slice() (compas_occ.brep.occbrep method)": [[61, "compas_occ.brep.OCCBrep.slice"]], "split() (compas_occ.brep.occbrep method)": [[62, "compas_occ.brep.OCCBrep.split"]], "to_iges() (compas_occ.brep.occbrep method)": [[63, "compas_occ.brep.OCCBrep.to_iges"]], "to_json() (compas_occ.brep.occbrep method)": [[64, "compas_occ.brep.OCCBrep.to_json"]], "to_jsonstring() (compas_occ.brep.occbrep method)": [[65, "compas_occ.brep.OCCBrep.to_jsonstring"]], "to_meshes() (compas_occ.brep.occbrep method)": [[66, "compas_occ.brep.OCCBrep.to_meshes"]], "to_polygons() (compas_occ.brep.occbrep method)": [[67, "compas_occ.brep.OCCBrep.to_polygons"]], "to_step() (compas_occ.brep.occbrep method)": [[68, "compas_occ.brep.OCCBrep.to_step"]], "to_stl() (compas_occ.brep.occbrep method)": [[69, "compas_occ.brep.OCCBrep.to_stl"]], "to_tesselation() (compas_occ.brep.occbrep method)": [[70, "compas_occ.brep.OCCBrep.to_tesselation"]], "to_viewmesh() (compas_occ.brep.occbrep method)": [[71, "compas_occ.brep.OCCBrep.to_viewmesh"]], "transform() (compas_occ.brep.occbrep method)": [[72, "compas_occ.brep.OCCBrep.transform"]], "transformed() (compas_occ.brep.occbrep method)": [[73, "compas_occ.brep.OCCBrep.transformed"]], "translate() (compas_occ.brep.occbrep method)": [[74, "compas_occ.brep.OCCBrep.translate"]], "translated() (compas_occ.brep.occbrep method)": [[75, "compas_occ.brep.OCCBrep.translated"]], "trim() (compas_occ.brep.occbrep method)": [[76, "compas_occ.brep.OCCBrep.trim"]], "trimmed() (compas_occ.brep.occbrep method)": [[77, "compas_occ.brep.OCCBrep.trimmed"]], "validate_data() (compas_occ.brep.occbrep class method)": [[78, "compas_occ.brep.OCCBrep.validate_data"]], "vertex_edges() (compas_occ.brep.occbrep method)": [[79, "compas_occ.brep.OCCBrep.vertex_edges"]], "vertex_faces() (compas_occ.brep.occbrep method)": [[80, "compas_occ.brep.OCCBrep.vertex_faces"]], "vertex_neighbors() (compas_occ.brep.occbrep method)": [[81, "compas_occ.brep.OCCBrep.vertex_neighbors"]], "occbrepedge (class in compas_occ.brep)": [[82, "compas_occ.brep.OCCBrepEdge"]], "tostring() (compas_occ.brep.occbrepedge method)": [[83, "compas_occ.brep.OCCBrepEdge.ToString"]], "copy() (compas_occ.brep.occbrepedge method)": [[84, "compas_occ.brep.OCCBrepEdge.copy"]], "from_circle() (compas_occ.brep.occbrepedge class method)": [[85, "compas_occ.brep.OCCBrepEdge.from_circle"]], "from_curve() (compas_occ.brep.occbrepedge class method)": [[86, "compas_occ.brep.OCCBrepEdge.from_curve"]], "from_ellipse() (compas_occ.brep.occbrepedge class method)": [[87, "compas_occ.brep.OCCBrepEdge.from_ellipse"]], "from_json() (compas_occ.brep.occbrepedge class method)": [[88, "compas_occ.brep.OCCBrepEdge.from_json"]], "from_jsonstring() (compas_occ.brep.occbrepedge class method)": [[89, "compas_occ.brep.OCCBrepEdge.from_jsonstring"]], "from_line() (compas_occ.brep.occbrepedge class method)": [[90, "compas_occ.brep.OCCBrepEdge.from_line"]], "from_point_point() (compas_occ.brep.occbrepedge class method)": [[91, "compas_occ.brep.OCCBrepEdge.from_point_point"]], "from_points() (compas_occ.brep.occbrepedge class method)": [[92, "compas_occ.brep.OCCBrepEdge.from_points"]], "from_vertex_vertex() (compas_occ.brep.occbrepedge class method)": [[93, "compas_occ.brep.OCCBrepEdge.from_vertex_vertex"]], "from_vertices() (compas_occ.brep.occbrepedge class method)": [[94, "compas_occ.brep.OCCBrepEdge.from_vertices"]], "is_equal() (compas_occ.brep.occbrepedge method)": [[95, "compas_occ.brep.OCCBrepEdge.is_equal"]], "is_same() (compas_occ.brep.occbrepedge method)": [[96, "compas_occ.brep.OCCBrepEdge.is_same"]], "sha256() (compas_occ.brep.occbrepedge method)": [[97, "compas_occ.brep.OCCBrepEdge.sha256"]], "to_bezier() (compas_occ.brep.occbrepedge method)": [[98, "compas_occ.brep.OCCBrepEdge.to_bezier"]], "to_bspline() (compas_occ.brep.occbrepedge method)": [[99, "compas_occ.brep.OCCBrepEdge.to_bspline"]], "to_circle() (compas_occ.brep.occbrepedge method)": [[100, "compas_occ.brep.OCCBrepEdge.to_circle"]], "to_curve() (compas_occ.brep.occbrepedge method)": [[101, "compas_occ.brep.OCCBrepEdge.to_curve"]], "to_ellipse() (compas_occ.brep.occbrepedge method)": [[102, "compas_occ.brep.OCCBrepEdge.to_ellipse"]], "to_hyperbola() (compas_occ.brep.occbrepedge method)": [[103, "compas_occ.brep.OCCBrepEdge.to_hyperbola"]], "to_json() (compas_occ.brep.occbrepedge method)": [[104, "compas_occ.brep.OCCBrepEdge.to_json"]], "to_jsonstring() (compas_occ.brep.occbrepedge method)": [[105, "compas_occ.brep.OCCBrepEdge.to_jsonstring"]], "to_line() (compas_occ.brep.occbrepedge method)": [[106, "compas_occ.brep.OCCBrepEdge.to_line"]], "to_parabola() (compas_occ.brep.occbrepedge method)": [[107, "compas_occ.brep.OCCBrepEdge.to_parabola"]], "validate_data() (compas_occ.brep.occbrepedge class method)": [[108, "compas_occ.brep.OCCBrepEdge.validate_data"]], "occbrepface (class in compas_occ.brep)": [[109, "compas_occ.brep.OCCBrepFace"]], "tostring() (compas_occ.brep.occbrepface method)": [[110, "compas_occ.brep.OCCBrepFace.ToString"]], "add_loop() (compas_occ.brep.occbrepface method)": [[111, "compas_occ.brep.OCCBrepFace.add_loop"]], "add_loops() (compas_occ.brep.occbrepface method)": [[112, "compas_occ.brep.OCCBrepFace.add_loops"]], "adjacent_faces() (compas_occ.brep.occbrepface method)": [[113, "compas_occ.brep.OCCBrepFace.adjacent_faces"]], "as_brep() (compas_occ.brep.occbrepface method)": [[114, "compas_occ.brep.OCCBrepFace.as_brep"]], "copy() (compas_occ.brep.occbrepface method)": [[115, "compas_occ.brep.OCCBrepFace.copy"]], "fix() (compas_occ.brep.occbrepface method)": [[116, "compas_occ.brep.OCCBrepFace.fix"]], "from_cone() (compas_occ.brep.occbrepface class method)": [[117, "compas_occ.brep.OCCBrepFace.from_cone"]], "from_cylinder() (compas_occ.brep.occbrepface class method)": [[118, "compas_occ.brep.OCCBrepFace.from_cylinder"]], "from_json() (compas_occ.brep.occbrepface class method)": [[119, "compas_occ.brep.OCCBrepFace.from_json"]], "from_jsonstring() (compas_occ.brep.occbrepface class method)": [[120, "compas_occ.brep.OCCBrepFace.from_jsonstring"]], "from_plane() (compas_occ.brep.occbrepface class method)": [[121, "compas_occ.brep.OCCBrepFace.from_plane"]], "from_polygon() (compas_occ.brep.occbrepface class method)": [[122, "compas_occ.brep.OCCBrepFace.from_polygon"]], "from_sphere() (compas_occ.brep.occbrepface class method)": [[123, "compas_occ.brep.OCCBrepFace.from_sphere"]], "from_surface() (compas_occ.brep.occbrepface class method)": [[124, "compas_occ.brep.OCCBrepFace.from_surface"]], "from_torus() (compas_occ.brep.occbrepface class method)": [[125, "compas_occ.brep.OCCBrepFace.from_torus"]], "is_equal() (compas_occ.brep.occbrepface method)": [[126, "compas_occ.brep.OCCBrepFace.is_equal"]], "is_same() (compas_occ.brep.occbrepface method)": [[127, "compas_occ.brep.OCCBrepFace.is_same"]], "is_valid() (compas_occ.brep.occbrepface method)": [[128, "compas_occ.brep.OCCBrepFace.is_valid"]], "sha256() (compas_occ.brep.occbrepface method)": [[129, "compas_occ.brep.OCCBrepFace.sha256"]], "to_cone() (compas_occ.brep.occbrepface method)": [[130, "compas_occ.brep.OCCBrepFace.to_cone"]], "to_cylinder() (compas_occ.brep.occbrepface method)": [[131, "compas_occ.brep.OCCBrepFace.to_cylinder"]], "to_json() (compas_occ.brep.occbrepface method)": [[132, "compas_occ.brep.OCCBrepFace.to_json"]], "to_jsonstring() (compas_occ.brep.occbrepface method)": [[133, "compas_occ.brep.OCCBrepFace.to_jsonstring"]], "to_plane() (compas_occ.brep.occbrepface method)": [[134, "compas_occ.brep.OCCBrepFace.to_plane"]], "to_polygon() (compas_occ.brep.occbrepface method)": [[135, "compas_occ.brep.OCCBrepFace.to_polygon"]], "to_sphere() (compas_occ.brep.occbrepface method)": [[136, "compas_occ.brep.OCCBrepFace.to_sphere"]], "to_torus() (compas_occ.brep.occbrepface method)": [[137, "compas_occ.brep.OCCBrepFace.to_torus"]], "try_get_nurbssurface() (compas_occ.brep.occbrepface method)": [[138, "compas_occ.brep.OCCBrepFace.try_get_nurbssurface"]], "validate_data() (compas_occ.brep.occbrepface class method)": [[139, "compas_occ.brep.OCCBrepFace.validate_data"]], "occbreploop (class in compas_occ.brep)": [[140, "compas_occ.brep.OCCBrepLoop"]], "tostring() (compas_occ.brep.occbreploop method)": [[141, "compas_occ.brep.OCCBrepLoop.ToString"]], "copy() (compas_occ.brep.occbreploop method)": [[142, "compas_occ.brep.OCCBrepLoop.copy"]], "fix() (compas_occ.brep.occbreploop method)": [[143, "compas_occ.brep.OCCBrepLoop.fix"]], "from_edges() (compas_occ.brep.occbreploop class method)": [[144, "compas_occ.brep.OCCBrepLoop.from_edges"]], "from_json() (compas_occ.brep.occbreploop class method)": [[145, "compas_occ.brep.OCCBrepLoop.from_json"]], "from_jsonstring() (compas_occ.brep.occbreploop class method)": [[146, "compas_occ.brep.OCCBrepLoop.from_jsonstring"]], "from_polygon() (compas_occ.brep.occbreploop class method)": [[147, "compas_occ.brep.OCCBrepLoop.from_polygon"]], "from_polyline() (compas_occ.brep.occbreploop class method)": [[148, "compas_occ.brep.OCCBrepLoop.from_polyline"]], "is_equal() (compas_occ.brep.occbreploop method)": [[149, "compas_occ.brep.OCCBrepLoop.is_equal"]], "is_same() (compas_occ.brep.occbreploop method)": [[150, "compas_occ.brep.OCCBrepLoop.is_same"]], "sha256() (compas_occ.brep.occbreploop method)": [[151, "compas_occ.brep.OCCBrepLoop.sha256"]], "to_json() (compas_occ.brep.occbreploop method)": [[152, "compas_occ.brep.OCCBrepLoop.to_json"]], "to_jsonstring() (compas_occ.brep.occbreploop method)": [[153, "compas_occ.brep.OCCBrepLoop.to_jsonstring"]], "validate_data() (compas_occ.brep.occbreploop class method)": [[154, "compas_occ.brep.OCCBrepLoop.validate_data"]], "occbrepvertex (class in compas_occ.brep)": [[155, "compas_occ.brep.OCCBrepVertex"]], "tostring() (compas_occ.brep.occbrepvertex method)": [[156, "compas_occ.brep.OCCBrepVertex.ToString"]], "copy() (compas_occ.brep.occbrepvertex method)": [[157, "compas_occ.brep.OCCBrepVertex.copy"]], "from_json() (compas_occ.brep.occbrepvertex class method)": [[158, "compas_occ.brep.OCCBrepVertex.from_json"]], "from_jsonstring() (compas_occ.brep.occbrepvertex class method)": [[159, "compas_occ.brep.OCCBrepVertex.from_jsonstring"]], "from_point() (compas_occ.brep.occbrepvertex class method)": [[160, "compas_occ.brep.OCCBrepVertex.from_point"]], "is_equal() (compas_occ.brep.occbrepvertex method)": [[161, "compas_occ.brep.OCCBrepVertex.is_equal"]], "is_same() (compas_occ.brep.occbrepvertex method)": [[162, "compas_occ.brep.OCCBrepVertex.is_same"]], "sha256() (compas_occ.brep.occbrepvertex method)": [[163, "compas_occ.brep.OCCBrepVertex.sha256"]], "to_json() (compas_occ.brep.occbrepvertex method)": [[164, "compas_occ.brep.OCCBrepVertex.to_json"]], "to_jsonstring() (compas_occ.brep.occbrepvertex method)": [[165, "compas_occ.brep.OCCBrepVertex.to_jsonstring"]], "validate_data() (compas_occ.brep.occbrepvertex class method)": [[166, "compas_occ.brep.OCCBrepVertex.validate_data"]], "array1_from_floats1() (in module compas_occ.conversions)": [[167, "compas_occ.conversions.array1_from_floats1"]], "array1_from_integers1() (in module compas_occ.conversions)": [[168, "compas_occ.conversions.array1_from_integers1"]], "array1_from_points1() (in module compas_occ.conversions)": [[169, "compas_occ.conversions.array1_from_points1"]], "array2_from_floats2() (in module compas_occ.conversions)": [[170, "compas_occ.conversions.array2_from_floats2"]], "array2_from_points2() (in module compas_occ.conversions)": [[171, "compas_occ.conversions.array2_from_points2"]], "ax2_to_compas() (in module compas_occ.conversions)": [[172, "compas_occ.conversions.ax2_to_compas"]], "ax3_to_compas() (in module compas_occ.conversions)": [[173, "compas_occ.conversions.ax3_to_compas"]], "axis_to_compas() (in module compas_occ.conversions)": [[174, "compas_occ.conversions.axis_to_compas"]], "axis_to_compas_vector() (in module compas_occ.conversions)": [[175, "compas_occ.conversions.axis_to_compas_vector"]], "axis_to_occ() (in module compas_occ.conversions)": [[176, "compas_occ.conversions.axis_to_occ"]], "bezier_to_compas() (in module compas_occ.conversions)": [[177, "compas_occ.conversions.bezier_to_compas"]], "bspline_to_compas() (in module compas_occ.conversions)": [[178, "compas_occ.conversions.bspline_to_compas"]], "circle_to_compas() (in module compas_occ.conversions)": [[179, "compas_occ.conversions.circle_to_compas"]], "circle_to_occ() (in module compas_occ.conversions)": [[180, "compas_occ.conversions.circle_to_occ"]], "compas_mesh_to_occ_shell() (in module compas_occ.conversions)": [[181, "compas_occ.conversions.compas_mesh_to_occ_shell"]], "compas_quadmesh_to_occ_shell() (in module compas_occ.conversions)": [[182, "compas_occ.conversions.compas_quadmesh_to_occ_shell"]], "compas_transformation_to_trsf() (in module compas_occ.conversions)": [[183, "compas_occ.conversions.compas_transformation_to_trsf"]], "compas_trimesh_to_occ_shell() (in module compas_occ.conversions)": [[184, "compas_occ.conversions.compas_trimesh_to_occ_shell"]], "cone_to_occ() (in module compas_occ.conversions)": [[185, "compas_occ.conversions.cone_to_occ"]], "cylinder_to_compas() (in module compas_occ.conversions)": [[186, "compas_occ.conversions.cylinder_to_compas"]], "cylinder_to_occ() (in module compas_occ.conversions)": [[187, "compas_occ.conversions.cylinder_to_occ"]], "direction_to_compas() (in module compas_occ.conversions)": [[188, "compas_occ.conversions.direction_to_compas"]], "direction_to_occ() (in module compas_occ.conversions)": [[189, "compas_occ.conversions.direction_to_occ"]], "ellipse_to_compas() (in module compas_occ.conversions)": [[190, "compas_occ.conversions.ellipse_to_compas"]], "ellipse_to_occ() (in module compas_occ.conversions)": [[191, "compas_occ.conversions.ellipse_to_occ"]], "floats2_from_array2() (in module compas_occ.conversions)": [[192, "compas_occ.conversions.floats2_from_array2"]], "frame_to_occ_ax2() (in module compas_occ.conversions)": [[193, "compas_occ.conversions.frame_to_occ_ax2"]], "frame_to_occ_ax3() (in module compas_occ.conversions)": [[194, "compas_occ.conversions.frame_to_occ_ax3"]], "harray1_from_points1() (in module compas_occ.conversions)": [[195, "compas_occ.conversions.harray1_from_points1"]], "hyperbola_to_compas() (in module compas_occ.conversions)": [[196, "compas_occ.conversions.hyperbola_to_compas"]], "line_to_compas() (in module compas_occ.conversions)": [[197, "compas_occ.conversions.line_to_compas"]], "line_to_occ() (in module compas_occ.conversions)": [[198, "compas_occ.conversions.line_to_occ"]], "location_to_compas() (in module compas_occ.conversions)": [[199, "compas_occ.conversions.location_to_compas"]], "ngon_to_face() (in module compas_occ.conversions)": [[200, "compas_occ.conversions.ngon_to_face"]], "parabola_to_compas() (in module compas_occ.conversions)": [[201, "compas_occ.conversions.parabola_to_compas"]], "plane_to_compas() (in module compas_occ.conversions)": [[202, "compas_occ.conversions.plane_to_compas"]], "plane_to_occ() (in module compas_occ.conversions)": [[203, "compas_occ.conversions.plane_to_occ"]], "plane_to_occ_ax2() (in module compas_occ.conversions)": [[204, "compas_occ.conversions.plane_to_occ_ax2"]], "plane_to_occ_ax3() (in module compas_occ.conversions)": [[205, "compas_occ.conversions.plane_to_occ_ax3"]], "point2d_to_compas() (in module compas_occ.conversions)": [[206, "compas_occ.conversions.point2d_to_compas"]], "point_to_compas() (in module compas_occ.conversions)": [[207, "compas_occ.conversions.point_to_compas"]], "point_to_occ() (in module compas_occ.conversions)": [[208, "compas_occ.conversions.point_to_occ"]], "points1_from_array1() (in module compas_occ.conversions)": [[209, "compas_occ.conversions.points1_from_array1"]], "points2_from_array2() (in module compas_occ.conversions)": [[210, "compas_occ.conversions.points2_from_array2"]], "quad_to_face() (in module compas_occ.conversions)": [[211, "compas_occ.conversions.quad_to_face"]], "sphere_to_compas() (in module compas_occ.conversions)": [[212, "compas_occ.conversions.sphere_to_compas"]], "sphere_to_occ() (in module compas_occ.conversions)": [[213, "compas_occ.conversions.sphere_to_occ"]], "torus_to_occ() (in module compas_occ.conversions)": [[214, "compas_occ.conversions.torus_to_occ"]], "triangle_to_face() (in module compas_occ.conversions)": [[215, "compas_occ.conversions.triangle_to_face"]], "vector2d_to_compas() (in module compas_occ.conversions)": [[216, "compas_occ.conversions.vector2d_to_compas"]], "vector_to_compas() (in module compas_occ.conversions)": [[217, "compas_occ.conversions.vector_to_compas"]], "vector_to_occ() (in module compas_occ.conversions)": [[218, "compas_occ.conversions.vector_to_occ"]], "occcurve (class in compas_occ.geometry)": [[219, "compas_occ.geometry.OCCCurve"]], "tostring() (compas_occ.geometry.occcurve method)": [[220, "compas_occ.geometry.OCCCurve.ToString"]], "aabb() (compas_occ.geometry.occcurve method)": [[221, "compas_occ.geometry.OCCCurve.aabb"]], "closest_parameters_curve() (compas_occ.geometry.occcurve method)": [[222, "compas_occ.geometry.OCCCurve.closest_parameters_curve"]], "closest_point() (compas_occ.geometry.occcurve method)": [[223, "compas_occ.geometry.OCCCurve.closest_point"]], "closest_points_curve() (compas_occ.geometry.occcurve method)": [[224, "compas_occ.geometry.OCCCurve.closest_points_curve"]], "compute_aabb() (compas_occ.geometry.occcurve method)": [[225, "compas_occ.geometry.OCCCurve.compute_aabb"]], "compute_obb() (compas_occ.geometry.occcurve method)": [[226, "compas_occ.geometry.OCCCurve.compute_obb"]], "copy() (compas_occ.geometry.occcurve method)": [[227, "compas_occ.geometry.OCCCurve.copy"]], "curvature_at() (compas_occ.geometry.occcurve method)": [[228, "compas_occ.geometry.OCCCurve.curvature_at"]], "divide() (compas_occ.geometry.occcurve method)": [[229, "compas_occ.geometry.OCCCurve.divide"]], "divide_by_count() (compas_occ.geometry.occcurve method)": [[230, "compas_occ.geometry.OCCCurve.divide_by_count"]], "divide_by_length() (compas_occ.geometry.occcurve method)": [[231, "compas_occ.geometry.OCCCurve.divide_by_length"]], "embedded() (compas_occ.geometry.occcurve method)": [[232, "compas_occ.geometry.OCCCurve.embedded"]], "fair() (compas_occ.geometry.occcurve method)": [[233, "compas_occ.geometry.OCCCurve.fair"]], "frame_at() (compas_occ.geometry.occcurve method)": [[234, "compas_occ.geometry.OCCCurve.frame_at"]], "from_json() (compas_occ.geometry.occcurve class method)": [[235, "compas_occ.geometry.OCCCurve.from_json"]], "from_jsonstring() (compas_occ.geometry.occcurve class method)": [[236, "compas_occ.geometry.OCCCurve.from_jsonstring"]], "from_obj() (compas_occ.geometry.occcurve class method)": [[237, "compas_occ.geometry.OCCCurve.from_obj"]], "from_occ() (compas_occ.geometry.occcurve class method)": [[238, "compas_occ.geometry.OCCCurve.from_occ"]], "from_step() (compas_occ.geometry.occcurve class method)": [[239, "compas_occ.geometry.OCCCurve.from_step"]], "length() (compas_occ.geometry.occcurve method)": [[240, "compas_occ.geometry.OCCCurve.length"]], "normal_at() (compas_occ.geometry.occcurve method)": [[241, "compas_occ.geometry.OCCCurve.normal_at"]], "offset() (compas_occ.geometry.occcurve method)": [[242, "compas_occ.geometry.OCCCurve.offset"]], "parameter_at_distance() (compas_occ.geometry.occcurve method)": [[243, "compas_occ.geometry.OCCCurve.parameter_at_distance"]], "point_at() (compas_occ.geometry.occcurve method)": [[244, "compas_occ.geometry.OCCCurve.point_at"]], "projected() (compas_occ.geometry.occcurve method)": [[245, "compas_occ.geometry.OCCCurve.projected"]], "reverse() (compas_occ.geometry.occcurve method)": [[246, "compas_occ.geometry.OCCCurve.reverse"]], "reversed() (compas_occ.geometry.occcurve method)": [[247, "compas_occ.geometry.OCCCurve.reversed"]], "rotate() (compas_occ.geometry.occcurve method)": [[248, "compas_occ.geometry.OCCCurve.rotate"]], "rotated() (compas_occ.geometry.occcurve method)": [[249, "compas_occ.geometry.OCCCurve.rotated"]], "scale() (compas_occ.geometry.occcurve method)": [[250, "compas_occ.geometry.OCCCurve.scale"]], "scaled() (compas_occ.geometry.occcurve method)": [[251, "compas_occ.geometry.OCCCurve.scaled"]], "sha256() (compas_occ.geometry.occcurve method)": [[252, "compas_occ.geometry.OCCCurve.sha256"]], "smooth() (compas_occ.geometry.occcurve method)": [[253, "compas_occ.geometry.OCCCurve.smooth"]], "split() (compas_occ.geometry.occcurve method)": [[254, "compas_occ.geometry.OCCCurve.split"]], "tangent_at() (compas_occ.geometry.occcurve method)": [[255, "compas_occ.geometry.OCCCurve.tangent_at"]], "to_json() (compas_occ.geometry.occcurve method)": [[256, "compas_occ.geometry.OCCCurve.to_json"]], "to_jsonstring() (compas_occ.geometry.occcurve method)": [[257, "compas_occ.geometry.OCCCurve.to_jsonstring"]], "to_obj() (compas_occ.geometry.occcurve method)": [[258, "compas_occ.geometry.OCCCurve.to_obj"]], "to_points() (compas_occ.geometry.occcurve method)": [[259, "compas_occ.geometry.OCCCurve.to_points"]], "to_polygon() (compas_occ.geometry.occcurve method)": [[260, "compas_occ.geometry.OCCCurve.to_polygon"]], "to_polyline() (compas_occ.geometry.occcurve method)": [[261, "compas_occ.geometry.OCCCurve.to_polyline"]], "to_step() (compas_occ.geometry.occcurve method)": [[262, "compas_occ.geometry.OCCCurve.to_step"]], "transform() (compas_occ.geometry.occcurve method)": [[263, "compas_occ.geometry.OCCCurve.transform"]], "transformed() (compas_occ.geometry.occcurve method)": [[264, "compas_occ.geometry.OCCCurve.transformed"]], "translate() (compas_occ.geometry.occcurve method)": [[265, "compas_occ.geometry.OCCCurve.translate"]], "translated() (compas_occ.geometry.occcurve method)": [[266, "compas_occ.geometry.OCCCurve.translated"]], "trim() (compas_occ.geometry.occcurve method)": [[267, "compas_occ.geometry.OCCCurve.trim"]], "validate_data() (compas_occ.geometry.occcurve class method)": [[268, "compas_occ.geometry.OCCCurve.validate_data"]], "occcurve2d (class in compas_occ.geometry)": [[269, "compas_occ.geometry.OCCCurve2d"]], "tostring() (compas_occ.geometry.occcurve2d method)": [[270, "compas_occ.geometry.OCCCurve2d.ToString"]], "aabb() (compas_occ.geometry.occcurve2d method)": [[271, "compas_occ.geometry.OCCCurve2d.aabb"]], "closest_point() (compas_occ.geometry.occcurve2d method)": [[272, "compas_occ.geometry.OCCCurve2d.closest_point"]], "compute_aabb() (compas_occ.geometry.occcurve2d method)": [[273, "compas_occ.geometry.OCCCurve2d.compute_aabb"]], "compute_obb() (compas_occ.geometry.occcurve2d method)": [[274, "compas_occ.geometry.OCCCurve2d.compute_obb"]], "copy() (compas_occ.geometry.occcurve2d method)": [[275, "compas_occ.geometry.OCCCurve2d.copy"]], "curvature_at() (compas_occ.geometry.occcurve2d method)": [[276, "compas_occ.geometry.OCCCurve2d.curvature_at"]], "divide_by_count() (compas_occ.geometry.occcurve2d method)": [[277, "compas_occ.geometry.OCCCurve2d.divide_by_count"]], "divide_by_length() (compas_occ.geometry.occcurve2d method)": [[278, "compas_occ.geometry.OCCCurve2d.divide_by_length"]], "fair() (compas_occ.geometry.occcurve2d method)": [[279, "compas_occ.geometry.OCCCurve2d.fair"]], "frame_at() (compas_occ.geometry.occcurve2d method)": [[280, "compas_occ.geometry.OCCCurve2d.frame_at"]], "from_json() (compas_occ.geometry.occcurve2d class method)": [[281, "compas_occ.geometry.OCCCurve2d.from_json"]], "from_jsonstring() (compas_occ.geometry.occcurve2d class method)": [[282, "compas_occ.geometry.OCCCurve2d.from_jsonstring"]], "from_obj() (compas_occ.geometry.occcurve2d class method)": [[283, "compas_occ.geometry.OCCCurve2d.from_obj"]], "from_occ() (compas_occ.geometry.occcurve2d class method)": [[284, "compas_occ.geometry.OCCCurve2d.from_occ"]], "from_step() (compas_occ.geometry.occcurve2d class method)": [[285, "compas_occ.geometry.OCCCurve2d.from_step"]], "length() (compas_occ.geometry.occcurve2d method)": [[286, "compas_occ.geometry.OCCCurve2d.length"]], "normal_at() (compas_occ.geometry.occcurve2d method)": [[287, "compas_occ.geometry.OCCCurve2d.normal_at"]], "offset() (compas_occ.geometry.occcurve2d method)": [[288, "compas_occ.geometry.OCCCurve2d.offset"]], "point_at() (compas_occ.geometry.occcurve2d method)": [[289, "compas_occ.geometry.OCCCurve2d.point_at"]], "reverse() (compas_occ.geometry.occcurve2d method)": [[290, "compas_occ.geometry.OCCCurve2d.reverse"]], "reversed() (compas_occ.geometry.occcurve2d method)": [[291, "compas_occ.geometry.OCCCurve2d.reversed"]], "rotate() (compas_occ.geometry.occcurve2d method)": [[292, "compas_occ.geometry.OCCCurve2d.rotate"]], "rotated() (compas_occ.geometry.occcurve2d method)": [[293, "compas_occ.geometry.OCCCurve2d.rotated"]], "scale() (compas_occ.geometry.occcurve2d method)": [[294, "compas_occ.geometry.OCCCurve2d.scale"]], "scaled() (compas_occ.geometry.occcurve2d method)": [[295, "compas_occ.geometry.OCCCurve2d.scaled"]], "sha256() (compas_occ.geometry.occcurve2d method)": [[296, "compas_occ.geometry.OCCCurve2d.sha256"]], "smooth() (compas_occ.geometry.occcurve2d method)": [[297, "compas_occ.geometry.OCCCurve2d.smooth"]], "split() (compas_occ.geometry.occcurve2d method)": [[298, "compas_occ.geometry.OCCCurve2d.split"]], "tangent_at() (compas_occ.geometry.occcurve2d method)": [[299, "compas_occ.geometry.OCCCurve2d.tangent_at"]], "to_json() (compas_occ.geometry.occcurve2d method)": [[300, "compas_occ.geometry.OCCCurve2d.to_json"]], "to_jsonstring() (compas_occ.geometry.occcurve2d method)": [[301, "compas_occ.geometry.OCCCurve2d.to_jsonstring"]], "to_obj() (compas_occ.geometry.occcurve2d method)": [[302, "compas_occ.geometry.OCCCurve2d.to_obj"]], "to_points() (compas_occ.geometry.occcurve2d method)": [[303, "compas_occ.geometry.OCCCurve2d.to_points"]], "to_polygon() (compas_occ.geometry.occcurve2d method)": [[304, "compas_occ.geometry.OCCCurve2d.to_polygon"]], "to_polyline() (compas_occ.geometry.occcurve2d method)": [[305, "compas_occ.geometry.OCCCurve2d.to_polyline"]], "to_step() (compas_occ.geometry.occcurve2d method)": [[306, "compas_occ.geometry.OCCCurve2d.to_step"]], "transform() (compas_occ.geometry.occcurve2d method)": [[307, "compas_occ.geometry.OCCCurve2d.transform"]], "transformed() (compas_occ.geometry.occcurve2d method)": [[308, "compas_occ.geometry.OCCCurve2d.transformed"]], "translate() (compas_occ.geometry.occcurve2d method)": [[309, "compas_occ.geometry.OCCCurve2d.translate"]], "translated() (compas_occ.geometry.occcurve2d method)": [[310, "compas_occ.geometry.OCCCurve2d.translated"]], "trim() (compas_occ.geometry.occcurve2d method)": [[311, "compas_occ.geometry.OCCCurve2d.trim"]], "validate_data() (compas_occ.geometry.occcurve2d class method)": [[312, "compas_occ.geometry.OCCCurve2d.validate_data"]], "occextrusionsurface (class in compas_occ.geometry)": [[313, "compas_occ.geometry.OCCExtrusionSurface"]], "tostring() (compas_occ.geometry.occextrusionsurface method)": [[314, "compas_occ.geometry.OCCExtrusionSurface.ToString"]], "aabb() (compas_occ.geometry.occextrusionsurface method)": [[315, "compas_occ.geometry.OCCExtrusionSurface.aabb"]], "boundary() (compas_occ.geometry.occextrusionsurface method)": [[316, "compas_occ.geometry.OCCExtrusionSurface.boundary"]], "closest_point() (compas_occ.geometry.occextrusionsurface method)": [[317, "compas_occ.geometry.OCCExtrusionSurface.closest_point"]], "compute() (compas_occ.geometry.occextrusionsurface method)": [[318, "compas_occ.geometry.OCCExtrusionSurface.compute"]], "compute_aabb() (compas_occ.geometry.occextrusionsurface method)": [[319, "compas_occ.geometry.OCCExtrusionSurface.compute_aabb"]], "compute_obb() (compas_occ.geometry.occextrusionsurface method)": [[320, "compas_occ.geometry.OCCExtrusionSurface.compute_obb"]], "copy() (compas_occ.geometry.occextrusionsurface method)": [[321, "compas_occ.geometry.OCCExtrusionSurface.copy"]], "curvature_at() (compas_occ.geometry.occextrusionsurface method)": [[322, "compas_occ.geometry.OCCExtrusionSurface.curvature_at"]], "frame_at() (compas_occ.geometry.occextrusionsurface method)": [[323, "compas_occ.geometry.OCCExtrusionSurface.frame_at"]], "from_face() (compas_occ.geometry.occextrusionsurface class method)": [[324, "compas_occ.geometry.OCCExtrusionSurface.from_face"]], "from_json() (compas_occ.geometry.occextrusionsurface class method)": [[325, "compas_occ.geometry.OCCExtrusionSurface.from_json"]], "from_jsonstring() (compas_occ.geometry.occextrusionsurface class method)": [[326, "compas_occ.geometry.OCCExtrusionSurface.from_jsonstring"]], "from_obj() (compas_occ.geometry.occextrusionsurface class method)": [[327, "compas_occ.geometry.OCCExtrusionSurface.from_obj"]], "from_occ() (compas_occ.geometry.occextrusionsurface class method)": [[328, "compas_occ.geometry.OCCExtrusionSurface.from_occ"]], "from_plane() (compas_occ.geometry.occextrusionsurface class method)": [[329, "compas_occ.geometry.OCCExtrusionSurface.from_plane"]], "from_step() (compas_occ.geometry.occextrusionsurface class method)": [[330, "compas_occ.geometry.OCCExtrusionSurface.from_step"]], "gaussian_curvature_at() (compas_occ.geometry.occextrusionsurface method)": [[331, "compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at"]], "intersections_with_curve() (compas_occ.geometry.occextrusionsurface method)": [[332, "compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve"]], "intersections_with_line() (compas_occ.geometry.occextrusionsurface method)": [[333, "compas_occ.geometry.OCCExtrusionSurface.intersections_with_line"]], "intersections_with_plane() (compas_occ.geometry.occextrusionsurface method)": [[334, "compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane"]], "isocurve_u() (compas_occ.geometry.occextrusionsurface method)": [[335, "compas_occ.geometry.OCCExtrusionSurface.isocurve_u"]], "isocurve_v() (compas_occ.geometry.occextrusionsurface method)": [[336, "compas_occ.geometry.OCCExtrusionSurface.isocurve_v"]], "mean_curvature_at() (compas_occ.geometry.occextrusionsurface method)": [[337, "compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at"]], "normal_at() (compas_occ.geometry.occextrusionsurface method)": [[338, "compas_occ.geometry.OCCExtrusionSurface.normal_at"]], "obb() (compas_occ.geometry.occextrusionsurface method)": [[339, "compas_occ.geometry.OCCExtrusionSurface.obb"]], "point_at() (compas_occ.geometry.occextrusionsurface method)": [[340, "compas_occ.geometry.OCCExtrusionSurface.point_at"]], "pointgrid() (compas_occ.geometry.occextrusionsurface method)": [[341, "compas_occ.geometry.OCCExtrusionSurface.pointgrid"]], "rotate() (compas_occ.geometry.occextrusionsurface method)": [[342, "compas_occ.geometry.OCCExtrusionSurface.rotate"]], "rotated() (compas_occ.geometry.occextrusionsurface method)": [[343, "compas_occ.geometry.OCCExtrusionSurface.rotated"]], "scale() (compas_occ.geometry.occextrusionsurface method)": [[344, "compas_occ.geometry.OCCExtrusionSurface.scale"]], "scaled() (compas_occ.geometry.occextrusionsurface method)": [[345, "compas_occ.geometry.OCCExtrusionSurface.scaled"]], "sha256() (compas_occ.geometry.occextrusionsurface method)": [[346, "compas_occ.geometry.OCCExtrusionSurface.sha256"]], "space_u() (compas_occ.geometry.occextrusionsurface method)": [[347, "compas_occ.geometry.OCCExtrusionSurface.space_u"]], "space_v() (compas_occ.geometry.occextrusionsurface method)": [[348, "compas_occ.geometry.OCCExtrusionSurface.space_v"]], "to_brep() (compas_occ.geometry.occextrusionsurface method)": [[349, "compas_occ.geometry.OCCExtrusionSurface.to_brep"]], "to_json() (compas_occ.geometry.occextrusionsurface method)": [[350, "compas_occ.geometry.OCCExtrusionSurface.to_json"]], "to_jsonstring() (compas_occ.geometry.occextrusionsurface method)": [[351, "compas_occ.geometry.OCCExtrusionSurface.to_jsonstring"]], "to_mesh() (compas_occ.geometry.occextrusionsurface method)": [[352, "compas_occ.geometry.OCCExtrusionSurface.to_mesh"]], "to_polyhedron() (compas_occ.geometry.occextrusionsurface method)": [[353, "compas_occ.geometry.OCCExtrusionSurface.to_polyhedron"]], "to_quads() (compas_occ.geometry.occextrusionsurface method)": [[354, "compas_occ.geometry.OCCExtrusionSurface.to_quads"]], "to_step() (compas_occ.geometry.occextrusionsurface method)": [[355, "compas_occ.geometry.OCCExtrusionSurface.to_step"]], "to_tesselation() (compas_occ.geometry.occextrusionsurface method)": [[356, "compas_occ.geometry.OCCExtrusionSurface.to_tesselation"]], "to_triangles() (compas_occ.geometry.occextrusionsurface method)": [[357, "compas_occ.geometry.OCCExtrusionSurface.to_triangles"]], "to_vertices_and_faces() (compas_occ.geometry.occextrusionsurface method)": [[358, "compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces"]], "transform() (compas_occ.geometry.occextrusionsurface method)": [[359, "compas_occ.geometry.OCCExtrusionSurface.transform"]], "transformed() (compas_occ.geometry.occextrusionsurface method)": [[360, "compas_occ.geometry.OCCExtrusionSurface.transformed"]], "translate() (compas_occ.geometry.occextrusionsurface method)": [[361, "compas_occ.geometry.OCCExtrusionSurface.translate"]], "translated() (compas_occ.geometry.occextrusionsurface method)": [[362, "compas_occ.geometry.OCCExtrusionSurface.translated"]], "validate_data() (compas_occ.geometry.occextrusionsurface class method)": [[363, "compas_occ.geometry.OCCExtrusionSurface.validate_data"]], "occnurbscurve (class in compas_occ.geometry)": [[364, "compas_occ.geometry.OCCNurbsCurve"]], "tostring() (compas_occ.geometry.occnurbscurve method)": [[365, "compas_occ.geometry.OCCNurbsCurve.ToString"]], "aabb() (compas_occ.geometry.occnurbscurve method)": [[366, "compas_occ.geometry.OCCNurbsCurve.aabb"]], "closest_parameters_curve() (compas_occ.geometry.occnurbscurve method)": [[367, "compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve"]], "closest_point() (compas_occ.geometry.occnurbscurve method)": [[368, "compas_occ.geometry.OCCNurbsCurve.closest_point"]], "closest_points_curve() (compas_occ.geometry.occnurbscurve method)": [[369, "compas_occ.geometry.OCCNurbsCurve.closest_points_curve"]], "compute_aabb() (compas_occ.geometry.occnurbscurve method)": [[370, "compas_occ.geometry.OCCNurbsCurve.compute_aabb"]], "compute_obb() (compas_occ.geometry.occnurbscurve method)": [[371, "compas_occ.geometry.OCCNurbsCurve.compute_obb"]], "copy() (compas_occ.geometry.occnurbscurve method)": [[372, "compas_occ.geometry.OCCNurbsCurve.copy"]], "curvature_at() (compas_occ.geometry.occnurbscurve method)": [[373, "compas_occ.geometry.OCCNurbsCurve.curvature_at"]], "divide() (compas_occ.geometry.occnurbscurve method)": [[374, "compas_occ.geometry.OCCNurbsCurve.divide"]], "divide_by_count() (compas_occ.geometry.occnurbscurve method)": [[375, "compas_occ.geometry.OCCNurbsCurve.divide_by_count"]], "divide_by_length() (compas_occ.geometry.occnurbscurve method)": [[376, "compas_occ.geometry.OCCNurbsCurve.divide_by_length"]], "elevate_degree() (compas_occ.geometry.occnurbscurve method)": [[377, "compas_occ.geometry.OCCNurbsCurve.elevate_degree"]], "embedded() (compas_occ.geometry.occnurbscurve method)": [[378, "compas_occ.geometry.OCCNurbsCurve.embedded"]], "fair() (compas_occ.geometry.occnurbscurve method)": [[379, "compas_occ.geometry.OCCNurbsCurve.fair"]], "frame_at() (compas_occ.geometry.occnurbscurve method)": [[380, "compas_occ.geometry.OCCNurbsCurve.frame_at"]], "from_arc() (compas_occ.geometry.occnurbscurve class method)": [[381, "compas_occ.geometry.OCCNurbsCurve.from_arc"]], "from_circle() (compas_occ.geometry.occnurbscurve class method)": [[382, "compas_occ.geometry.OCCNurbsCurve.from_circle"]], "from_ellipse() (compas_occ.geometry.occnurbscurve class method)": [[383, "compas_occ.geometry.OCCNurbsCurve.from_ellipse"]], "from_interpolation() (compas_occ.geometry.occnurbscurve class method)": [[384, "compas_occ.geometry.OCCNurbsCurve.from_interpolation"]], "from_json() (compas_occ.geometry.occnurbscurve class method)": [[385, "compas_occ.geometry.OCCNurbsCurve.from_json"]], "from_jsonstring() (compas_occ.geometry.occnurbscurve class method)": [[386, "compas_occ.geometry.OCCNurbsCurve.from_jsonstring"]], "from_line() (compas_occ.geometry.occnurbscurve class method)": [[387, "compas_occ.geometry.OCCNurbsCurve.from_line"]], "from_native() (compas_occ.geometry.occnurbscurve class method)": [[388, "compas_occ.geometry.OCCNurbsCurve.from_native"]], "from_obj() (compas_occ.geometry.occnurbscurve class method)": [[389, "compas_occ.geometry.OCCNurbsCurve.from_obj"]], "from_occ() (compas_occ.geometry.occnurbscurve class method)": [[390, "compas_occ.geometry.OCCNurbsCurve.from_occ"]], "from_parameters() (compas_occ.geometry.occnurbscurve class method)": [[391, "compas_occ.geometry.OCCNurbsCurve.from_parameters"]], "from_points() (compas_occ.geometry.occnurbscurve class method)": [[392, "compas_occ.geometry.OCCNurbsCurve.from_points"]], "from_step() (compas_occ.geometry.occnurbscurve class method)": [[393, "compas_occ.geometry.OCCNurbsCurve.from_step"]], "insert_knot() (compas_occ.geometry.occnurbscurve method)": [[394, "compas_occ.geometry.OCCNurbsCurve.insert_knot"]], "join() (compas_occ.geometry.occnurbscurve method)": [[395, "compas_occ.geometry.OCCNurbsCurve.join"]], "joined() (compas_occ.geometry.occnurbscurve method)": [[396, "compas_occ.geometry.OCCNurbsCurve.joined"]], "length() (compas_occ.geometry.occnurbscurve method)": [[397, "compas_occ.geometry.OCCNurbsCurve.length"]], "normal_at() (compas_occ.geometry.occnurbscurve method)": [[398, "compas_occ.geometry.OCCNurbsCurve.normal_at"]], "offset() (compas_occ.geometry.occnurbscurve method)": [[399, "compas_occ.geometry.OCCNurbsCurve.offset"]], "parameter_at_distance() (compas_occ.geometry.occnurbscurve method)": [[400, "compas_occ.geometry.OCCNurbsCurve.parameter_at_distance"]], "point_at() (compas_occ.geometry.occnurbscurve method)": [[401, "compas_occ.geometry.OCCNurbsCurve.point_at"]], "projected() (compas_occ.geometry.occnurbscurve method)": [[402, "compas_occ.geometry.OCCNurbsCurve.projected"]], "reduce_degree() (compas_occ.geometry.occnurbscurve method)": [[403, "compas_occ.geometry.OCCNurbsCurve.reduce_degree"]], "refine_knot() (compas_occ.geometry.occnurbscurve method)": [[404, "compas_occ.geometry.OCCNurbsCurve.refine_knot"]], "remove_knot() (compas_occ.geometry.occnurbscurve method)": [[405, "compas_occ.geometry.OCCNurbsCurve.remove_knot"]], "reverse() (compas_occ.geometry.occnurbscurve method)": [[406, "compas_occ.geometry.OCCNurbsCurve.reverse"]], "reversed() (compas_occ.geometry.occnurbscurve method)": [[407, "compas_occ.geometry.OCCNurbsCurve.reversed"]], "rotate() (compas_occ.geometry.occnurbscurve method)": [[408, "compas_occ.geometry.OCCNurbsCurve.rotate"]], "rotated() (compas_occ.geometry.occnurbscurve method)": [[409, "compas_occ.geometry.OCCNurbsCurve.rotated"]], "scale() (compas_occ.geometry.occnurbscurve method)": [[410, "compas_occ.geometry.OCCNurbsCurve.scale"]], "scaled() (compas_occ.geometry.occnurbscurve method)": [[411, "compas_occ.geometry.OCCNurbsCurve.scaled"]], "segment() (compas_occ.geometry.occnurbscurve method)": [[412, "compas_occ.geometry.OCCNurbsCurve.segment"]], "segmented() (compas_occ.geometry.occnurbscurve method)": [[413, "compas_occ.geometry.OCCNurbsCurve.segmented"]], "sha256() (compas_occ.geometry.occnurbscurve method)": [[414, "compas_occ.geometry.OCCNurbsCurve.sha256"]], "smooth() (compas_occ.geometry.occnurbscurve method)": [[415, "compas_occ.geometry.OCCNurbsCurve.smooth"]], "split() (compas_occ.geometry.occnurbscurve method)": [[416, "compas_occ.geometry.OCCNurbsCurve.split"]], "tangent_at() (compas_occ.geometry.occnurbscurve method)": [[417, "compas_occ.geometry.OCCNurbsCurve.tangent_at"]], "to_json() (compas_occ.geometry.occnurbscurve method)": [[418, "compas_occ.geometry.OCCNurbsCurve.to_json"]], "to_jsonstring() (compas_occ.geometry.occnurbscurve method)": [[419, "compas_occ.geometry.OCCNurbsCurve.to_jsonstring"]], "to_obj() (compas_occ.geometry.occnurbscurve method)": [[420, "compas_occ.geometry.OCCNurbsCurve.to_obj"]], "to_points() (compas_occ.geometry.occnurbscurve method)": [[421, "compas_occ.geometry.OCCNurbsCurve.to_points"]], "to_polygon() (compas_occ.geometry.occnurbscurve method)": [[422, "compas_occ.geometry.OCCNurbsCurve.to_polygon"]], "to_polyline() (compas_occ.geometry.occnurbscurve method)": [[423, "compas_occ.geometry.OCCNurbsCurve.to_polyline"]], "to_step() (compas_occ.geometry.occnurbscurve method)": [[424, "compas_occ.geometry.OCCNurbsCurve.to_step"]], "transform() (compas_occ.geometry.occnurbscurve method)": [[425, "compas_occ.geometry.OCCNurbsCurve.transform"]], "transformed() (compas_occ.geometry.occnurbscurve method)": [[426, "compas_occ.geometry.OCCNurbsCurve.transformed"]], "translate() (compas_occ.geometry.occnurbscurve method)": [[427, "compas_occ.geometry.OCCNurbsCurve.translate"]], "translated() (compas_occ.geometry.occnurbscurve method)": [[428, "compas_occ.geometry.OCCNurbsCurve.translated"]], "trim() (compas_occ.geometry.occnurbscurve method)": [[429, "compas_occ.geometry.OCCNurbsCurve.trim"]], "validate_data() (compas_occ.geometry.occnurbscurve class method)": [[430, "compas_occ.geometry.OCCNurbsCurve.validate_data"]], "occnurbssurface (class in compas_occ.geometry)": [[431, "compas_occ.geometry.OCCNurbsSurface"]], "tostring() (compas_occ.geometry.occnurbssurface method)": [[432, "compas_occ.geometry.OCCNurbsSurface.ToString"]], "aabb() (compas_occ.geometry.occnurbssurface method)": [[433, "compas_occ.geometry.OCCNurbsSurface.aabb"]], "boundary() (compas_occ.geometry.occnurbssurface method)": [[434, "compas_occ.geometry.OCCNurbsSurface.boundary"]], "closest_point() (compas_occ.geometry.occnurbssurface method)": [[435, "compas_occ.geometry.OCCNurbsSurface.closest_point"]], "compute_aabb() (compas_occ.geometry.occnurbssurface method)": [[436, "compas_occ.geometry.OCCNurbsSurface.compute_aabb"]], "compute_obb() (compas_occ.geometry.occnurbssurface method)": [[437, "compas_occ.geometry.OCCNurbsSurface.compute_obb"]], "copy() (compas_occ.geometry.occnurbssurface method)": [[438, "compas_occ.geometry.OCCNurbsSurface.copy"]], "curvature_at() (compas_occ.geometry.occnurbssurface method)": [[439, "compas_occ.geometry.OCCNurbsSurface.curvature_at"]], "frame_at() (compas_occ.geometry.occnurbssurface method)": [[440, "compas_occ.geometry.OCCNurbsSurface.frame_at"]], "from_extrusion() (compas_occ.geometry.occnurbssurface class method)": [[441, "compas_occ.geometry.OCCNurbsSurface.from_extrusion"]], "from_face() (compas_occ.geometry.occnurbssurface class method)": [[442, "compas_occ.geometry.OCCNurbsSurface.from_face"]], "from_fill() (compas_occ.geometry.occnurbssurface class method)": [[443, "compas_occ.geometry.OCCNurbsSurface.from_fill"]], "from_interpolation() (compas_occ.geometry.occnurbssurface class method)": [[444, "compas_occ.geometry.OCCNurbsSurface.from_interpolation"]], "from_json() (compas_occ.geometry.occnurbssurface class method)": [[445, "compas_occ.geometry.OCCNurbsSurface.from_json"]], "from_jsonstring() (compas_occ.geometry.occnurbssurface class method)": [[446, "compas_occ.geometry.OCCNurbsSurface.from_jsonstring"]], "from_meshgrid() (compas_occ.geometry.occnurbssurface class method)": [[447, "compas_occ.geometry.OCCNurbsSurface.from_meshgrid"]], "from_native() (compas_occ.geometry.occnurbssurface class method)": [[448, "compas_occ.geometry.OCCNurbsSurface.from_native"]], "from_obj() (compas_occ.geometry.occnurbssurface class method)": [[449, "compas_occ.geometry.OCCNurbsSurface.from_obj"]], "from_occ() (compas_occ.geometry.occnurbssurface class method)": [[450, "compas_occ.geometry.OCCNurbsSurface.from_occ"]], "from_parameters() (compas_occ.geometry.occnurbssurface class method)": [[451, "compas_occ.geometry.OCCNurbsSurface.from_parameters"]], "from_plane() (compas_occ.geometry.occnurbssurface class method)": [[452, "compas_occ.geometry.OCCNurbsSurface.from_plane"]], "from_points() (compas_occ.geometry.occnurbssurface class method)": [[453, "compas_occ.geometry.OCCNurbsSurface.from_points"]], "from_step() (compas_occ.geometry.occnurbssurface class method)": [[454, "compas_occ.geometry.OCCNurbsSurface.from_step"]], "gaussian_curvature_at() (compas_occ.geometry.occnurbssurface method)": [[455, "compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at"]], "intersections_with_curve() (compas_occ.geometry.occnurbssurface method)": [[456, "compas_occ.geometry.OCCNurbsSurface.intersections_with_curve"]], "intersections_with_line() (compas_occ.geometry.occnurbssurface method)": [[457, "compas_occ.geometry.OCCNurbsSurface.intersections_with_line"]], "intersections_with_plane() (compas_occ.geometry.occnurbssurface method)": [[458, "compas_occ.geometry.OCCNurbsSurface.intersections_with_plane"]], "isocurve_u() (compas_occ.geometry.occnurbssurface method)": [[459, "compas_occ.geometry.OCCNurbsSurface.isocurve_u"]], "isocurve_v() (compas_occ.geometry.occnurbssurface method)": [[460, "compas_occ.geometry.OCCNurbsSurface.isocurve_v"]], "mean_curvature_at() (compas_occ.geometry.occnurbssurface method)": [[461, "compas_occ.geometry.OCCNurbsSurface.mean_curvature_at"]], "normal_at() (compas_occ.geometry.occnurbssurface method)": [[462, "compas_occ.geometry.OCCNurbsSurface.normal_at"]], "obb() (compas_occ.geometry.occnurbssurface method)": [[463, "compas_occ.geometry.OCCNurbsSurface.obb"]], "point_at() (compas_occ.geometry.occnurbssurface method)": [[464, "compas_occ.geometry.OCCNurbsSurface.point_at"]], "pointgrid() (compas_occ.geometry.occnurbssurface method)": [[465, "compas_occ.geometry.OCCNurbsSurface.pointgrid"]], "rotate() (compas_occ.geometry.occnurbssurface method)": [[466, "compas_occ.geometry.OCCNurbsSurface.rotate"]], "rotated() (compas_occ.geometry.occnurbssurface method)": [[467, "compas_occ.geometry.OCCNurbsSurface.rotated"]], "scale() (compas_occ.geometry.occnurbssurface method)": [[468, "compas_occ.geometry.OCCNurbsSurface.scale"]], "scaled() (compas_occ.geometry.occnurbssurface method)": [[469, "compas_occ.geometry.OCCNurbsSurface.scaled"]], "sha256() (compas_occ.geometry.occnurbssurface method)": [[470, "compas_occ.geometry.OCCNurbsSurface.sha256"]], "space_u() (compas_occ.geometry.occnurbssurface method)": [[471, "compas_occ.geometry.OCCNurbsSurface.space_u"]], "space_v() (compas_occ.geometry.occnurbssurface method)": [[472, "compas_occ.geometry.OCCNurbsSurface.space_v"]], "to_brep() (compas_occ.geometry.occnurbssurface method)": [[473, "compas_occ.geometry.OCCNurbsSurface.to_brep"]], "to_json() (compas_occ.geometry.occnurbssurface method)": [[474, "compas_occ.geometry.OCCNurbsSurface.to_json"]], "to_jsonstring() (compas_occ.geometry.occnurbssurface method)": [[475, "compas_occ.geometry.OCCNurbsSurface.to_jsonstring"]], "to_mesh() (compas_occ.geometry.occnurbssurface method)": [[476, "compas_occ.geometry.OCCNurbsSurface.to_mesh"]], "to_polyhedron() (compas_occ.geometry.occnurbssurface method)": [[477, "compas_occ.geometry.OCCNurbsSurface.to_polyhedron"]], "to_quads() (compas_occ.geometry.occnurbssurface method)": [[478, "compas_occ.geometry.OCCNurbsSurface.to_quads"]], "to_step() (compas_occ.geometry.occnurbssurface method)": [[479, "compas_occ.geometry.OCCNurbsSurface.to_step"]], "to_tesselation() (compas_occ.geometry.occnurbssurface method)": [[480, "compas_occ.geometry.OCCNurbsSurface.to_tesselation"]], "to_triangles() (compas_occ.geometry.occnurbssurface method)": [[481, "compas_occ.geometry.OCCNurbsSurface.to_triangles"]], "to_vertices_and_faces() (compas_occ.geometry.occnurbssurface method)": [[482, "compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces"]], "transform() (compas_occ.geometry.occnurbssurface method)": [[483, "compas_occ.geometry.OCCNurbsSurface.transform"]], "transformed() (compas_occ.geometry.occnurbssurface method)": [[484, "compas_occ.geometry.OCCNurbsSurface.transformed"]], "translate() (compas_occ.geometry.occnurbssurface method)": [[485, "compas_occ.geometry.OCCNurbsSurface.translate"]], "translated() (compas_occ.geometry.occnurbssurface method)": [[486, "compas_occ.geometry.OCCNurbsSurface.translated"]], "validate_data() (compas_occ.geometry.occnurbssurface class method)": [[487, "compas_occ.geometry.OCCNurbsSurface.validate_data"]], "occrevolutionsurface (class in compas_occ.geometry)": [[488, "compas_occ.geometry.OCCRevolutionSurface"]], "tostring() (compas_occ.geometry.occrevolutionsurface method)": [[489, "compas_occ.geometry.OCCRevolutionSurface.ToString"]], "aabb() (compas_occ.geometry.occrevolutionsurface method)": [[490, "compas_occ.geometry.OCCRevolutionSurface.aabb"]], "boundary() (compas_occ.geometry.occrevolutionsurface method)": [[491, "compas_occ.geometry.OCCRevolutionSurface.boundary"]], "closest_point() (compas_occ.geometry.occrevolutionsurface method)": [[492, "compas_occ.geometry.OCCRevolutionSurface.closest_point"]], "compute() (compas_occ.geometry.occrevolutionsurface method)": [[493, "compas_occ.geometry.OCCRevolutionSurface.compute"]], "compute_aabb() (compas_occ.geometry.occrevolutionsurface method)": [[494, "compas_occ.geometry.OCCRevolutionSurface.compute_aabb"]], "compute_obb() (compas_occ.geometry.occrevolutionsurface method)": [[495, "compas_occ.geometry.OCCRevolutionSurface.compute_obb"]], "copy() (compas_occ.geometry.occrevolutionsurface method)": [[496, "compas_occ.geometry.OCCRevolutionSurface.copy"]], "curvature_at() (compas_occ.geometry.occrevolutionsurface method)": [[497, "compas_occ.geometry.OCCRevolutionSurface.curvature_at"]], "frame_at() (compas_occ.geometry.occrevolutionsurface method)": [[498, "compas_occ.geometry.OCCRevolutionSurface.frame_at"]], "from_face() (compas_occ.geometry.occrevolutionsurface class method)": [[499, "compas_occ.geometry.OCCRevolutionSurface.from_face"]], "from_json() (compas_occ.geometry.occrevolutionsurface class method)": [[500, "compas_occ.geometry.OCCRevolutionSurface.from_json"]], "from_jsonstring() (compas_occ.geometry.occrevolutionsurface class method)": [[501, "compas_occ.geometry.OCCRevolutionSurface.from_jsonstring"]], "from_obj() (compas_occ.geometry.occrevolutionsurface class method)": [[502, "compas_occ.geometry.OCCRevolutionSurface.from_obj"]], "from_occ() (compas_occ.geometry.occrevolutionsurface class method)": [[503, "compas_occ.geometry.OCCRevolutionSurface.from_occ"]], "from_plane() (compas_occ.geometry.occrevolutionsurface class method)": [[504, "compas_occ.geometry.OCCRevolutionSurface.from_plane"]], "from_step() (compas_occ.geometry.occrevolutionsurface class method)": [[505, "compas_occ.geometry.OCCRevolutionSurface.from_step"]], "gaussian_curvature_at() (compas_occ.geometry.occrevolutionsurface method)": [[506, "compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at"]], "intersections_with_curve() (compas_occ.geometry.occrevolutionsurface method)": [[507, "compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve"]], "intersections_with_line() (compas_occ.geometry.occrevolutionsurface method)": [[508, "compas_occ.geometry.OCCRevolutionSurface.intersections_with_line"]], "intersections_with_plane() (compas_occ.geometry.occrevolutionsurface method)": [[509, "compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane"]], "isocurve_u() (compas_occ.geometry.occrevolutionsurface method)": [[510, "compas_occ.geometry.OCCRevolutionSurface.isocurve_u"]], "isocurve_v() (compas_occ.geometry.occrevolutionsurface method)": [[511, "compas_occ.geometry.OCCRevolutionSurface.isocurve_v"]], "mean_curvature_at() (compas_occ.geometry.occrevolutionsurface method)": [[512, "compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at"]], "normal_at() (compas_occ.geometry.occrevolutionsurface method)": [[513, "compas_occ.geometry.OCCRevolutionSurface.normal_at"]], "obb() (compas_occ.geometry.occrevolutionsurface method)": [[514, "compas_occ.geometry.OCCRevolutionSurface.obb"]], "point_at() (compas_occ.geometry.occrevolutionsurface method)": [[515, "compas_occ.geometry.OCCRevolutionSurface.point_at"]], "pointgrid() (compas_occ.geometry.occrevolutionsurface method)": [[516, "compas_occ.geometry.OCCRevolutionSurface.pointgrid"]], "rotate() (compas_occ.geometry.occrevolutionsurface method)": [[517, "compas_occ.geometry.OCCRevolutionSurface.rotate"]], "rotated() (compas_occ.geometry.occrevolutionsurface method)": [[518, "compas_occ.geometry.OCCRevolutionSurface.rotated"]], "scale() (compas_occ.geometry.occrevolutionsurface method)": [[519, "compas_occ.geometry.OCCRevolutionSurface.scale"]], "scaled() (compas_occ.geometry.occrevolutionsurface method)": [[520, "compas_occ.geometry.OCCRevolutionSurface.scaled"]], "sha256() (compas_occ.geometry.occrevolutionsurface method)": [[521, "compas_occ.geometry.OCCRevolutionSurface.sha256"]], "space_u() (compas_occ.geometry.occrevolutionsurface method)": [[522, "compas_occ.geometry.OCCRevolutionSurface.space_u"]], "space_v() (compas_occ.geometry.occrevolutionsurface method)": [[523, "compas_occ.geometry.OCCRevolutionSurface.space_v"]], "to_brep() (compas_occ.geometry.occrevolutionsurface method)": [[524, "compas_occ.geometry.OCCRevolutionSurface.to_brep"]], "to_json() (compas_occ.geometry.occrevolutionsurface method)": [[525, "compas_occ.geometry.OCCRevolutionSurface.to_json"]], "to_jsonstring() (compas_occ.geometry.occrevolutionsurface method)": [[526, "compas_occ.geometry.OCCRevolutionSurface.to_jsonstring"]], "to_mesh() (compas_occ.geometry.occrevolutionsurface method)": [[527, "compas_occ.geometry.OCCRevolutionSurface.to_mesh"]], "to_polyhedron() (compas_occ.geometry.occrevolutionsurface method)": [[528, "compas_occ.geometry.OCCRevolutionSurface.to_polyhedron"]], "to_quads() (compas_occ.geometry.occrevolutionsurface method)": [[529, "compas_occ.geometry.OCCRevolutionSurface.to_quads"]], "to_step() (compas_occ.geometry.occrevolutionsurface method)": [[530, "compas_occ.geometry.OCCRevolutionSurface.to_step"]], "to_tesselation() (compas_occ.geometry.occrevolutionsurface method)": [[531, "compas_occ.geometry.OCCRevolutionSurface.to_tesselation"]], "to_triangles() (compas_occ.geometry.occrevolutionsurface method)": [[532, "compas_occ.geometry.OCCRevolutionSurface.to_triangles"]], "to_vertices_and_faces() (compas_occ.geometry.occrevolutionsurface method)": [[533, "compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces"]], "transform() (compas_occ.geometry.occrevolutionsurface method)": [[534, "compas_occ.geometry.OCCRevolutionSurface.transform"]], "transformed() (compas_occ.geometry.occrevolutionsurface method)": [[535, "compas_occ.geometry.OCCRevolutionSurface.transformed"]], "translate() (compas_occ.geometry.occrevolutionsurface method)": [[536, "compas_occ.geometry.OCCRevolutionSurface.translate"]], "translated() (compas_occ.geometry.occrevolutionsurface method)": [[537, "compas_occ.geometry.OCCRevolutionSurface.translated"]], "validate_data() (compas_occ.geometry.occrevolutionsurface class method)": [[538, "compas_occ.geometry.OCCRevolutionSurface.validate_data"]], "occsurface (class in compas_occ.geometry)": [[539, "compas_occ.geometry.OCCSurface"]], "tostring() (compas_occ.geometry.occsurface method)": [[540, "compas_occ.geometry.OCCSurface.ToString"]], "aabb() (compas_occ.geometry.occsurface method)": [[541, "compas_occ.geometry.OCCSurface.aabb"]], "boundary() (compas_occ.geometry.occsurface method)": [[542, "compas_occ.geometry.OCCSurface.boundary"]], "closest_point() (compas_occ.geometry.occsurface method)": [[543, "compas_occ.geometry.OCCSurface.closest_point"]], "compute_aabb() (compas_occ.geometry.occsurface method)": [[544, "compas_occ.geometry.OCCSurface.compute_aabb"]], "compute_obb() (compas_occ.geometry.occsurface method)": [[545, "compas_occ.geometry.OCCSurface.compute_obb"]], "copy() (compas_occ.geometry.occsurface method)": [[546, "compas_occ.geometry.OCCSurface.copy"]], "curvature_at() (compas_occ.geometry.occsurface method)": [[547, "compas_occ.geometry.OCCSurface.curvature_at"]], "frame_at() (compas_occ.geometry.occsurface method)": [[548, "compas_occ.geometry.OCCSurface.frame_at"]], "from_face() (compas_occ.geometry.occsurface class method)": [[549, "compas_occ.geometry.OCCSurface.from_face"]], "from_json() (compas_occ.geometry.occsurface class method)": [[550, "compas_occ.geometry.OCCSurface.from_json"]], "from_jsonstring() (compas_occ.geometry.occsurface class method)": [[551, "compas_occ.geometry.OCCSurface.from_jsonstring"]], "from_obj() (compas_occ.geometry.occsurface class method)": [[552, "compas_occ.geometry.OCCSurface.from_obj"]], "from_occ() (compas_occ.geometry.occsurface class method)": [[553, "compas_occ.geometry.OCCSurface.from_occ"]], "from_plane() (compas_occ.geometry.occsurface class method)": [[554, "compas_occ.geometry.OCCSurface.from_plane"]], "from_step() (compas_occ.geometry.occsurface class method)": [[555, "compas_occ.geometry.OCCSurface.from_step"]], "gaussian_curvature_at() (compas_occ.geometry.occsurface method)": [[556, "compas_occ.geometry.OCCSurface.gaussian_curvature_at"]], "intersections_with_curve() (compas_occ.geometry.occsurface method)": [[557, "compas_occ.geometry.OCCSurface.intersections_with_curve"]], "intersections_with_line() (compas_occ.geometry.occsurface method)": [[558, "compas_occ.geometry.OCCSurface.intersections_with_line"]], "intersections_with_plane() (compas_occ.geometry.occsurface method)": [[559, "compas_occ.geometry.OCCSurface.intersections_with_plane"]], "isocurve_u() (compas_occ.geometry.occsurface method)": [[560, "compas_occ.geometry.OCCSurface.isocurve_u"]], "isocurve_v() (compas_occ.geometry.occsurface method)": [[561, "compas_occ.geometry.OCCSurface.isocurve_v"]], "mean_curvature_at() (compas_occ.geometry.occsurface method)": [[562, "compas_occ.geometry.OCCSurface.mean_curvature_at"]], "normal_at() (compas_occ.geometry.occsurface method)": [[563, "compas_occ.geometry.OCCSurface.normal_at"]], "obb() (compas_occ.geometry.occsurface method)": [[564, "compas_occ.geometry.OCCSurface.obb"]], "point_at() (compas_occ.geometry.occsurface method)": [[565, "compas_occ.geometry.OCCSurface.point_at"]], "pointgrid() (compas_occ.geometry.occsurface method)": [[566, "compas_occ.geometry.OCCSurface.pointgrid"]], "rotate() (compas_occ.geometry.occsurface method)": [[567, "compas_occ.geometry.OCCSurface.rotate"]], "rotated() (compas_occ.geometry.occsurface method)": [[568, "compas_occ.geometry.OCCSurface.rotated"]], "scale() (compas_occ.geometry.occsurface method)": [[569, "compas_occ.geometry.OCCSurface.scale"]], "scaled() (compas_occ.geometry.occsurface method)": [[570, "compas_occ.geometry.OCCSurface.scaled"]], "sha256() (compas_occ.geometry.occsurface method)": [[571, "compas_occ.geometry.OCCSurface.sha256"]], "space_u() (compas_occ.geometry.occsurface method)": [[572, "compas_occ.geometry.OCCSurface.space_u"]], "space_v() (compas_occ.geometry.occsurface method)": [[573, "compas_occ.geometry.OCCSurface.space_v"]], "to_brep() (compas_occ.geometry.occsurface method)": [[574, "compas_occ.geometry.OCCSurface.to_brep"]], "to_json() (compas_occ.geometry.occsurface method)": [[575, "compas_occ.geometry.OCCSurface.to_json"]], "to_jsonstring() (compas_occ.geometry.occsurface method)": [[576, "compas_occ.geometry.OCCSurface.to_jsonstring"]], "to_mesh() (compas_occ.geometry.occsurface method)": [[577, "compas_occ.geometry.OCCSurface.to_mesh"]], "to_polyhedron() (compas_occ.geometry.occsurface method)": [[578, "compas_occ.geometry.OCCSurface.to_polyhedron"]], "to_quads() (compas_occ.geometry.occsurface method)": [[579, "compas_occ.geometry.OCCSurface.to_quads"]], "to_step() (compas_occ.geometry.occsurface method)": [[580, "compas_occ.geometry.OCCSurface.to_step"]], "to_tesselation() (compas_occ.geometry.occsurface method)": [[581, "compas_occ.geometry.OCCSurface.to_tesselation"]], "to_triangles() (compas_occ.geometry.occsurface method)": [[582, "compas_occ.geometry.OCCSurface.to_triangles"]], "to_vertices_and_faces() (compas_occ.geometry.occsurface method)": [[583, "compas_occ.geometry.OCCSurface.to_vertices_and_faces"]], "transform() (compas_occ.geometry.occsurface method)": [[584, "compas_occ.geometry.OCCSurface.transform"]], "transformed() (compas_occ.geometry.occsurface method)": [[585, "compas_occ.geometry.OCCSurface.transformed"]], "translate() (compas_occ.geometry.occsurface method)": [[586, "compas_occ.geometry.OCCSurface.translate"]], "translated() (compas_occ.geometry.occsurface method)": [[587, "compas_occ.geometry.OCCSurface.translated"]], "validate_data() (compas_occ.geometry.occsurface class method)": [[588, "compas_occ.geometry.OCCSurface.validate_data"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["acknowledgements", "api", "api/compas_occ.brep", "api/compas_occ.conversions", "api/compas_occ.geometry", "api/compas_occ.geometry.curves", "api/compas_occ.geometry.surfaces", "api/generated/compas_occ.brep.OCCBrep", "api/generated/compas_occ.brep.OCCBrep.ToString", "api/generated/compas_occ.brep.OCCBrep.check", "api/generated/compas_occ.brep.OCCBrep.compute_aabb", "api/generated/compas_occ.brep.OCCBrep.compute_obb", "api/generated/compas_occ.brep.OCCBrep.contains", "api/generated/compas_occ.brep.OCCBrep.contours", "api/generated/compas_occ.brep.OCCBrep.copy", "api/generated/compas_occ.brep.OCCBrep.cull_unused_edges", "api/generated/compas_occ.brep.OCCBrep.cull_unused_faces", "api/generated/compas_occ.brep.OCCBrep.cull_unused_loops", "api/generated/compas_occ.brep.OCCBrep.cull_unused_vertices", "api/generated/compas_occ.brep.OCCBrep.edge_faces", "api/generated/compas_occ.brep.OCCBrep.edge_loop", "api/generated/compas_occ.brep.OCCBrep.edge_loops", "api/generated/compas_occ.brep.OCCBrep.fillet", "api/generated/compas_occ.brep.OCCBrep.filleted", "api/generated/compas_occ.brep.OCCBrep.fix", "api/generated/compas_occ.brep.OCCBrep.from_boolean_difference", "api/generated/compas_occ.brep.OCCBrep.from_boolean_intersection", "api/generated/compas_occ.brep.OCCBrep.from_boolean_union", "api/generated/compas_occ.brep.OCCBrep.from_box", "api/generated/compas_occ.brep.OCCBrep.from_brepfaces", "api/generated/compas_occ.brep.OCCBrep.from_breps", "api/generated/compas_occ.brep.OCCBrep.from_cone", "api/generated/compas_occ.brep.OCCBrep.from_curves", "api/generated/compas_occ.brep.OCCBrep.from_cylinder", "api/generated/compas_occ.brep.OCCBrep.from_extrusion", "api/generated/compas_occ.brep.OCCBrep.from_iges", "api/generated/compas_occ.brep.OCCBrep.from_json", "api/generated/compas_occ.brep.OCCBrep.from_jsonstring", "api/generated/compas_occ.brep.OCCBrep.from_loft", "api/generated/compas_occ.brep.OCCBrep.from_mesh", "api/generated/compas_occ.brep.OCCBrep.from_native", "api/generated/compas_occ.brep.OCCBrep.from_pipe", "api/generated/compas_occ.brep.OCCBrep.from_plane", "api/generated/compas_occ.brep.OCCBrep.from_planes", "api/generated/compas_occ.brep.OCCBrep.from_polygons", "api/generated/compas_occ.brep.OCCBrep.from_shape", "api/generated/compas_occ.brep.OCCBrep.from_sphere", "api/generated/compas_occ.brep.OCCBrep.from_step", "api/generated/compas_occ.brep.OCCBrep.from_surface", "api/generated/compas_occ.brep.OCCBrep.from_sweep", "api/generated/compas_occ.brep.OCCBrep.from_torus", "api/generated/compas_occ.brep.OCCBrep.heal", "api/generated/compas_occ.brep.OCCBrep.make_solid", "api/generated/compas_occ.brep.OCCBrep.overlap", "api/generated/compas_occ.brep.OCCBrep.rotate", "api/generated/compas_occ.brep.OCCBrep.rotated", "api/generated/compas_occ.brep.OCCBrep.scale", "api/generated/compas_occ.brep.OCCBrep.scaled", "api/generated/compas_occ.brep.OCCBrep.sew", "api/generated/compas_occ.brep.OCCBrep.sha256", "api/generated/compas_occ.brep.OCCBrep.simplify", "api/generated/compas_occ.brep.OCCBrep.slice", "api/generated/compas_occ.brep.OCCBrep.split", "api/generated/compas_occ.brep.OCCBrep.to_iges", "api/generated/compas_occ.brep.OCCBrep.to_json", "api/generated/compas_occ.brep.OCCBrep.to_jsonstring", "api/generated/compas_occ.brep.OCCBrep.to_meshes", "api/generated/compas_occ.brep.OCCBrep.to_polygons", "api/generated/compas_occ.brep.OCCBrep.to_step", "api/generated/compas_occ.brep.OCCBrep.to_stl", "api/generated/compas_occ.brep.OCCBrep.to_tesselation", "api/generated/compas_occ.brep.OCCBrep.to_viewmesh", "api/generated/compas_occ.brep.OCCBrep.transform", "api/generated/compas_occ.brep.OCCBrep.transformed", "api/generated/compas_occ.brep.OCCBrep.translate", "api/generated/compas_occ.brep.OCCBrep.translated", "api/generated/compas_occ.brep.OCCBrep.trim", "api/generated/compas_occ.brep.OCCBrep.trimmed", "api/generated/compas_occ.brep.OCCBrep.validate_data", "api/generated/compas_occ.brep.OCCBrep.vertex_edges", "api/generated/compas_occ.brep.OCCBrep.vertex_faces", "api/generated/compas_occ.brep.OCCBrep.vertex_neighbors", "api/generated/compas_occ.brep.OCCBrepEdge", "api/generated/compas_occ.brep.OCCBrepEdge.ToString", "api/generated/compas_occ.brep.OCCBrepEdge.copy", "api/generated/compas_occ.brep.OCCBrepEdge.from_circle", "api/generated/compas_occ.brep.OCCBrepEdge.from_curve", "api/generated/compas_occ.brep.OCCBrepEdge.from_ellipse", "api/generated/compas_occ.brep.OCCBrepEdge.from_json", "api/generated/compas_occ.brep.OCCBrepEdge.from_jsonstring", "api/generated/compas_occ.brep.OCCBrepEdge.from_line", "api/generated/compas_occ.brep.OCCBrepEdge.from_point_point", "api/generated/compas_occ.brep.OCCBrepEdge.from_points", "api/generated/compas_occ.brep.OCCBrepEdge.from_vertex_vertex", "api/generated/compas_occ.brep.OCCBrepEdge.from_vertices", "api/generated/compas_occ.brep.OCCBrepEdge.is_equal", "api/generated/compas_occ.brep.OCCBrepEdge.is_same", "api/generated/compas_occ.brep.OCCBrepEdge.sha256", "api/generated/compas_occ.brep.OCCBrepEdge.to_bezier", "api/generated/compas_occ.brep.OCCBrepEdge.to_bspline", "api/generated/compas_occ.brep.OCCBrepEdge.to_circle", "api/generated/compas_occ.brep.OCCBrepEdge.to_curve", "api/generated/compas_occ.brep.OCCBrepEdge.to_ellipse", "api/generated/compas_occ.brep.OCCBrepEdge.to_hyperbola", "api/generated/compas_occ.brep.OCCBrepEdge.to_json", "api/generated/compas_occ.brep.OCCBrepEdge.to_jsonstring", "api/generated/compas_occ.brep.OCCBrepEdge.to_line", "api/generated/compas_occ.brep.OCCBrepEdge.to_parabola", "api/generated/compas_occ.brep.OCCBrepEdge.validate_data", "api/generated/compas_occ.brep.OCCBrepFace", "api/generated/compas_occ.brep.OCCBrepFace.ToString", "api/generated/compas_occ.brep.OCCBrepFace.add_loop", "api/generated/compas_occ.brep.OCCBrepFace.add_loops", "api/generated/compas_occ.brep.OCCBrepFace.adjacent_faces", "api/generated/compas_occ.brep.OCCBrepFace.as_brep", "api/generated/compas_occ.brep.OCCBrepFace.copy", "api/generated/compas_occ.brep.OCCBrepFace.fix", "api/generated/compas_occ.brep.OCCBrepFace.from_cone", "api/generated/compas_occ.brep.OCCBrepFace.from_cylinder", "api/generated/compas_occ.brep.OCCBrepFace.from_json", "api/generated/compas_occ.brep.OCCBrepFace.from_jsonstring", "api/generated/compas_occ.brep.OCCBrepFace.from_plane", "api/generated/compas_occ.brep.OCCBrepFace.from_polygon", "api/generated/compas_occ.brep.OCCBrepFace.from_sphere", "api/generated/compas_occ.brep.OCCBrepFace.from_surface", "api/generated/compas_occ.brep.OCCBrepFace.from_torus", "api/generated/compas_occ.brep.OCCBrepFace.is_equal", "api/generated/compas_occ.brep.OCCBrepFace.is_same", "api/generated/compas_occ.brep.OCCBrepFace.is_valid", "api/generated/compas_occ.brep.OCCBrepFace.sha256", "api/generated/compas_occ.brep.OCCBrepFace.to_cone", "api/generated/compas_occ.brep.OCCBrepFace.to_cylinder", "api/generated/compas_occ.brep.OCCBrepFace.to_json", "api/generated/compas_occ.brep.OCCBrepFace.to_jsonstring", "api/generated/compas_occ.brep.OCCBrepFace.to_plane", "api/generated/compas_occ.brep.OCCBrepFace.to_polygon", "api/generated/compas_occ.brep.OCCBrepFace.to_sphere", "api/generated/compas_occ.brep.OCCBrepFace.to_torus", "api/generated/compas_occ.brep.OCCBrepFace.try_get_nurbssurface", "api/generated/compas_occ.brep.OCCBrepFace.validate_data", "api/generated/compas_occ.brep.OCCBrepLoop", "api/generated/compas_occ.brep.OCCBrepLoop.ToString", "api/generated/compas_occ.brep.OCCBrepLoop.copy", "api/generated/compas_occ.brep.OCCBrepLoop.fix", "api/generated/compas_occ.brep.OCCBrepLoop.from_edges", "api/generated/compas_occ.brep.OCCBrepLoop.from_json", "api/generated/compas_occ.brep.OCCBrepLoop.from_jsonstring", "api/generated/compas_occ.brep.OCCBrepLoop.from_polygon", "api/generated/compas_occ.brep.OCCBrepLoop.from_polyline", "api/generated/compas_occ.brep.OCCBrepLoop.is_equal", "api/generated/compas_occ.brep.OCCBrepLoop.is_same", "api/generated/compas_occ.brep.OCCBrepLoop.sha256", "api/generated/compas_occ.brep.OCCBrepLoop.to_json", "api/generated/compas_occ.brep.OCCBrepLoop.to_jsonstring", "api/generated/compas_occ.brep.OCCBrepLoop.validate_data", "api/generated/compas_occ.brep.OCCBrepVertex", "api/generated/compas_occ.brep.OCCBrepVertex.ToString", "api/generated/compas_occ.brep.OCCBrepVertex.copy", "api/generated/compas_occ.brep.OCCBrepVertex.from_json", "api/generated/compas_occ.brep.OCCBrepVertex.from_jsonstring", "api/generated/compas_occ.brep.OCCBrepVertex.from_point", "api/generated/compas_occ.brep.OCCBrepVertex.is_equal", "api/generated/compas_occ.brep.OCCBrepVertex.is_same", "api/generated/compas_occ.brep.OCCBrepVertex.sha256", "api/generated/compas_occ.brep.OCCBrepVertex.to_json", "api/generated/compas_occ.brep.OCCBrepVertex.to_jsonstring", "api/generated/compas_occ.brep.OCCBrepVertex.validate_data", "api/generated/compas_occ.conversions.array1_from_floats1", "api/generated/compas_occ.conversions.array1_from_integers1", "api/generated/compas_occ.conversions.array1_from_points1", "api/generated/compas_occ.conversions.array2_from_floats2", "api/generated/compas_occ.conversions.array2_from_points2", "api/generated/compas_occ.conversions.ax2_to_compas", "api/generated/compas_occ.conversions.ax3_to_compas", "api/generated/compas_occ.conversions.axis_to_compas", "api/generated/compas_occ.conversions.axis_to_compas_vector", "api/generated/compas_occ.conversions.axis_to_occ", "api/generated/compas_occ.conversions.bezier_to_compas", "api/generated/compas_occ.conversions.bspline_to_compas", "api/generated/compas_occ.conversions.circle_to_compas", "api/generated/compas_occ.conversions.circle_to_occ", "api/generated/compas_occ.conversions.compas_mesh_to_occ_shell", "api/generated/compas_occ.conversions.compas_quadmesh_to_occ_shell", "api/generated/compas_occ.conversions.compas_transformation_to_trsf", "api/generated/compas_occ.conversions.compas_trimesh_to_occ_shell", "api/generated/compas_occ.conversions.cone_to_occ", "api/generated/compas_occ.conversions.cylinder_to_compas", "api/generated/compas_occ.conversions.cylinder_to_occ", "api/generated/compas_occ.conversions.direction_to_compas", "api/generated/compas_occ.conversions.direction_to_occ", "api/generated/compas_occ.conversions.ellipse_to_compas", "api/generated/compas_occ.conversions.ellipse_to_occ", "api/generated/compas_occ.conversions.floats2_from_array2", "api/generated/compas_occ.conversions.frame_to_occ_ax2", "api/generated/compas_occ.conversions.frame_to_occ_ax3", "api/generated/compas_occ.conversions.harray1_from_points1", "api/generated/compas_occ.conversions.hyperbola_to_compas", "api/generated/compas_occ.conversions.line_to_compas", "api/generated/compas_occ.conversions.line_to_occ", "api/generated/compas_occ.conversions.location_to_compas", "api/generated/compas_occ.conversions.ngon_to_face", "api/generated/compas_occ.conversions.parabola_to_compas", "api/generated/compas_occ.conversions.plane_to_compas", "api/generated/compas_occ.conversions.plane_to_occ", "api/generated/compas_occ.conversions.plane_to_occ_ax2", "api/generated/compas_occ.conversions.plane_to_occ_ax3", "api/generated/compas_occ.conversions.point2d_to_compas", "api/generated/compas_occ.conversions.point_to_compas", "api/generated/compas_occ.conversions.point_to_occ", "api/generated/compas_occ.conversions.points1_from_array1", "api/generated/compas_occ.conversions.points2_from_array2", "api/generated/compas_occ.conversions.quad_to_face", "api/generated/compas_occ.conversions.sphere_to_compas", "api/generated/compas_occ.conversions.sphere_to_occ", "api/generated/compas_occ.conversions.torus_to_occ", "api/generated/compas_occ.conversions.triangle_to_face", "api/generated/compas_occ.conversions.vector2d_to_compas", "api/generated/compas_occ.conversions.vector_to_compas", "api/generated/compas_occ.conversions.vector_to_occ", "api/generated/compas_occ.geometry.OCCCurve", "api/generated/compas_occ.geometry.OCCCurve.ToString", "api/generated/compas_occ.geometry.OCCCurve.aabb", "api/generated/compas_occ.geometry.OCCCurve.closest_parameters_curve", "api/generated/compas_occ.geometry.OCCCurve.closest_point", "api/generated/compas_occ.geometry.OCCCurve.closest_points_curve", "api/generated/compas_occ.geometry.OCCCurve.compute_aabb", "api/generated/compas_occ.geometry.OCCCurve.compute_obb", "api/generated/compas_occ.geometry.OCCCurve.copy", "api/generated/compas_occ.geometry.OCCCurve.curvature_at", "api/generated/compas_occ.geometry.OCCCurve.divide", "api/generated/compas_occ.geometry.OCCCurve.divide_by_count", "api/generated/compas_occ.geometry.OCCCurve.divide_by_length", "api/generated/compas_occ.geometry.OCCCurve.embedded", "api/generated/compas_occ.geometry.OCCCurve.fair", "api/generated/compas_occ.geometry.OCCCurve.frame_at", "api/generated/compas_occ.geometry.OCCCurve.from_json", "api/generated/compas_occ.geometry.OCCCurve.from_jsonstring", "api/generated/compas_occ.geometry.OCCCurve.from_obj", "api/generated/compas_occ.geometry.OCCCurve.from_occ", "api/generated/compas_occ.geometry.OCCCurve.from_step", "api/generated/compas_occ.geometry.OCCCurve.length", "api/generated/compas_occ.geometry.OCCCurve.normal_at", "api/generated/compas_occ.geometry.OCCCurve.offset", "api/generated/compas_occ.geometry.OCCCurve.parameter_at_distance", "api/generated/compas_occ.geometry.OCCCurve.point_at", "api/generated/compas_occ.geometry.OCCCurve.projected", "api/generated/compas_occ.geometry.OCCCurve.reverse", "api/generated/compas_occ.geometry.OCCCurve.reversed", "api/generated/compas_occ.geometry.OCCCurve.rotate", "api/generated/compas_occ.geometry.OCCCurve.rotated", "api/generated/compas_occ.geometry.OCCCurve.scale", "api/generated/compas_occ.geometry.OCCCurve.scaled", "api/generated/compas_occ.geometry.OCCCurve.sha256", "api/generated/compas_occ.geometry.OCCCurve.smooth", "api/generated/compas_occ.geometry.OCCCurve.split", "api/generated/compas_occ.geometry.OCCCurve.tangent_at", "api/generated/compas_occ.geometry.OCCCurve.to_json", "api/generated/compas_occ.geometry.OCCCurve.to_jsonstring", "api/generated/compas_occ.geometry.OCCCurve.to_obj", "api/generated/compas_occ.geometry.OCCCurve.to_points", "api/generated/compas_occ.geometry.OCCCurve.to_polygon", "api/generated/compas_occ.geometry.OCCCurve.to_polyline", "api/generated/compas_occ.geometry.OCCCurve.to_step", "api/generated/compas_occ.geometry.OCCCurve.transform", "api/generated/compas_occ.geometry.OCCCurve.transformed", "api/generated/compas_occ.geometry.OCCCurve.translate", "api/generated/compas_occ.geometry.OCCCurve.translated", "api/generated/compas_occ.geometry.OCCCurve.trim", "api/generated/compas_occ.geometry.OCCCurve.validate_data", "api/generated/compas_occ.geometry.OCCCurve2d", "api/generated/compas_occ.geometry.OCCCurve2d.ToString", "api/generated/compas_occ.geometry.OCCCurve2d.aabb", "api/generated/compas_occ.geometry.OCCCurve2d.closest_point", "api/generated/compas_occ.geometry.OCCCurve2d.compute_aabb", "api/generated/compas_occ.geometry.OCCCurve2d.compute_obb", "api/generated/compas_occ.geometry.OCCCurve2d.copy", "api/generated/compas_occ.geometry.OCCCurve2d.curvature_at", "api/generated/compas_occ.geometry.OCCCurve2d.divide_by_count", "api/generated/compas_occ.geometry.OCCCurve2d.divide_by_length", "api/generated/compas_occ.geometry.OCCCurve2d.fair", "api/generated/compas_occ.geometry.OCCCurve2d.frame_at", "api/generated/compas_occ.geometry.OCCCurve2d.from_json", "api/generated/compas_occ.geometry.OCCCurve2d.from_jsonstring", "api/generated/compas_occ.geometry.OCCCurve2d.from_obj", "api/generated/compas_occ.geometry.OCCCurve2d.from_occ", "api/generated/compas_occ.geometry.OCCCurve2d.from_step", "api/generated/compas_occ.geometry.OCCCurve2d.length", "api/generated/compas_occ.geometry.OCCCurve2d.normal_at", "api/generated/compas_occ.geometry.OCCCurve2d.offset", "api/generated/compas_occ.geometry.OCCCurve2d.point_at", "api/generated/compas_occ.geometry.OCCCurve2d.reverse", "api/generated/compas_occ.geometry.OCCCurve2d.reversed", "api/generated/compas_occ.geometry.OCCCurve2d.rotate", "api/generated/compas_occ.geometry.OCCCurve2d.rotated", "api/generated/compas_occ.geometry.OCCCurve2d.scale", "api/generated/compas_occ.geometry.OCCCurve2d.scaled", "api/generated/compas_occ.geometry.OCCCurve2d.sha256", "api/generated/compas_occ.geometry.OCCCurve2d.smooth", "api/generated/compas_occ.geometry.OCCCurve2d.split", "api/generated/compas_occ.geometry.OCCCurve2d.tangent_at", "api/generated/compas_occ.geometry.OCCCurve2d.to_json", "api/generated/compas_occ.geometry.OCCCurve2d.to_jsonstring", "api/generated/compas_occ.geometry.OCCCurve2d.to_obj", "api/generated/compas_occ.geometry.OCCCurve2d.to_points", "api/generated/compas_occ.geometry.OCCCurve2d.to_polygon", "api/generated/compas_occ.geometry.OCCCurve2d.to_polyline", "api/generated/compas_occ.geometry.OCCCurve2d.to_step", "api/generated/compas_occ.geometry.OCCCurve2d.transform", "api/generated/compas_occ.geometry.OCCCurve2d.transformed", "api/generated/compas_occ.geometry.OCCCurve2d.translate", "api/generated/compas_occ.geometry.OCCCurve2d.translated", "api/generated/compas_occ.geometry.OCCCurve2d.trim", "api/generated/compas_occ.geometry.OCCCurve2d.validate_data", "api/generated/compas_occ.geometry.OCCExtrusionSurface", "api/generated/compas_occ.geometry.OCCExtrusionSurface.ToString", "api/generated/compas_occ.geometry.OCCExtrusionSurface.aabb", "api/generated/compas_occ.geometry.OCCExtrusionSurface.boundary", "api/generated/compas_occ.geometry.OCCExtrusionSurface.closest_point", "api/generated/compas_occ.geometry.OCCExtrusionSurface.compute", "api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_aabb", "api/generated/compas_occ.geometry.OCCExtrusionSurface.compute_obb", "api/generated/compas_occ.geometry.OCCExtrusionSurface.copy", "api/generated/compas_occ.geometry.OCCExtrusionSurface.curvature_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.frame_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_face", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_json", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_jsonstring", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_obj", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_occ", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_plane", "api/generated/compas_occ.geometry.OCCExtrusionSurface.from_step", "api/generated/compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve", "api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_line", "api/generated/compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane", "api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_u", "api/generated/compas_occ.geometry.OCCExtrusionSurface.isocurve_v", "api/generated/compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.normal_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.obb", "api/generated/compas_occ.geometry.OCCExtrusionSurface.point_at", "api/generated/compas_occ.geometry.OCCExtrusionSurface.pointgrid", "api/generated/compas_occ.geometry.OCCExtrusionSurface.rotate", "api/generated/compas_occ.geometry.OCCExtrusionSurface.rotated", "api/generated/compas_occ.geometry.OCCExtrusionSurface.scale", "api/generated/compas_occ.geometry.OCCExtrusionSurface.scaled", "api/generated/compas_occ.geometry.OCCExtrusionSurface.sha256", "api/generated/compas_occ.geometry.OCCExtrusionSurface.space_u", "api/generated/compas_occ.geometry.OCCExtrusionSurface.space_v", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_brep", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_json", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_jsonstring", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_mesh", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_polyhedron", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_quads", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_step", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_tesselation", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_triangles", "api/generated/compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces", "api/generated/compas_occ.geometry.OCCExtrusionSurface.transform", "api/generated/compas_occ.geometry.OCCExtrusionSurface.transformed", "api/generated/compas_occ.geometry.OCCExtrusionSurface.translate", "api/generated/compas_occ.geometry.OCCExtrusionSurface.translated", "api/generated/compas_occ.geometry.OCCExtrusionSurface.validate_data", "api/generated/compas_occ.geometry.OCCNurbsCurve", "api/generated/compas_occ.geometry.OCCNurbsCurve.ToString", "api/generated/compas_occ.geometry.OCCNurbsCurve.aabb", "api/generated/compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve", "api/generated/compas_occ.geometry.OCCNurbsCurve.closest_point", "api/generated/compas_occ.geometry.OCCNurbsCurve.closest_points_curve", "api/generated/compas_occ.geometry.OCCNurbsCurve.compute_aabb", "api/generated/compas_occ.geometry.OCCNurbsCurve.compute_obb", "api/generated/compas_occ.geometry.OCCNurbsCurve.copy", "api/generated/compas_occ.geometry.OCCNurbsCurve.curvature_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.divide", "api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_count", "api/generated/compas_occ.geometry.OCCNurbsCurve.divide_by_length", "api/generated/compas_occ.geometry.OCCNurbsCurve.elevate_degree", "api/generated/compas_occ.geometry.OCCNurbsCurve.embedded", "api/generated/compas_occ.geometry.OCCNurbsCurve.fair", "api/generated/compas_occ.geometry.OCCNurbsCurve.frame_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_arc", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_circle", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_ellipse", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_interpolation", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_json", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_jsonstring", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_line", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_native", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_obj", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_occ", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_parameters", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_points", "api/generated/compas_occ.geometry.OCCNurbsCurve.from_step", "api/generated/compas_occ.geometry.OCCNurbsCurve.insert_knot", "api/generated/compas_occ.geometry.OCCNurbsCurve.join", "api/generated/compas_occ.geometry.OCCNurbsCurve.joined", "api/generated/compas_occ.geometry.OCCNurbsCurve.length", "api/generated/compas_occ.geometry.OCCNurbsCurve.normal_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.offset", "api/generated/compas_occ.geometry.OCCNurbsCurve.parameter_at_distance", "api/generated/compas_occ.geometry.OCCNurbsCurve.point_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.projected", "api/generated/compas_occ.geometry.OCCNurbsCurve.reduce_degree", "api/generated/compas_occ.geometry.OCCNurbsCurve.refine_knot", "api/generated/compas_occ.geometry.OCCNurbsCurve.remove_knot", "api/generated/compas_occ.geometry.OCCNurbsCurve.reverse", "api/generated/compas_occ.geometry.OCCNurbsCurve.reversed", "api/generated/compas_occ.geometry.OCCNurbsCurve.rotate", "api/generated/compas_occ.geometry.OCCNurbsCurve.rotated", "api/generated/compas_occ.geometry.OCCNurbsCurve.scale", "api/generated/compas_occ.geometry.OCCNurbsCurve.scaled", "api/generated/compas_occ.geometry.OCCNurbsCurve.segment", "api/generated/compas_occ.geometry.OCCNurbsCurve.segmented", "api/generated/compas_occ.geometry.OCCNurbsCurve.sha256", "api/generated/compas_occ.geometry.OCCNurbsCurve.smooth", "api/generated/compas_occ.geometry.OCCNurbsCurve.split", "api/generated/compas_occ.geometry.OCCNurbsCurve.tangent_at", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_json", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_jsonstring", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_obj", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_points", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_polygon", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_polyline", "api/generated/compas_occ.geometry.OCCNurbsCurve.to_step", "api/generated/compas_occ.geometry.OCCNurbsCurve.transform", "api/generated/compas_occ.geometry.OCCNurbsCurve.transformed", "api/generated/compas_occ.geometry.OCCNurbsCurve.translate", "api/generated/compas_occ.geometry.OCCNurbsCurve.translated", "api/generated/compas_occ.geometry.OCCNurbsCurve.trim", "api/generated/compas_occ.geometry.OCCNurbsCurve.validate_data", "api/generated/compas_occ.geometry.OCCNurbsSurface", "api/generated/compas_occ.geometry.OCCNurbsSurface.ToString", "api/generated/compas_occ.geometry.OCCNurbsSurface.aabb", "api/generated/compas_occ.geometry.OCCNurbsSurface.boundary", "api/generated/compas_occ.geometry.OCCNurbsSurface.closest_point", "api/generated/compas_occ.geometry.OCCNurbsSurface.compute_aabb", "api/generated/compas_occ.geometry.OCCNurbsSurface.compute_obb", "api/generated/compas_occ.geometry.OCCNurbsSurface.copy", "api/generated/compas_occ.geometry.OCCNurbsSurface.curvature_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.frame_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_extrusion", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_face", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_fill", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_interpolation", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_json", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_jsonstring", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_meshgrid", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_native", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_obj", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_occ", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_parameters", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_plane", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_points", "api/generated/compas_occ.geometry.OCCNurbsSurface.from_step", "api/generated/compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_curve", "api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_line", "api/generated/compas_occ.geometry.OCCNurbsSurface.intersections_with_plane", "api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_u", "api/generated/compas_occ.geometry.OCCNurbsSurface.isocurve_v", "api/generated/compas_occ.geometry.OCCNurbsSurface.mean_curvature_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.normal_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.obb", "api/generated/compas_occ.geometry.OCCNurbsSurface.point_at", "api/generated/compas_occ.geometry.OCCNurbsSurface.pointgrid", "api/generated/compas_occ.geometry.OCCNurbsSurface.rotate", "api/generated/compas_occ.geometry.OCCNurbsSurface.rotated", "api/generated/compas_occ.geometry.OCCNurbsSurface.scale", "api/generated/compas_occ.geometry.OCCNurbsSurface.scaled", "api/generated/compas_occ.geometry.OCCNurbsSurface.sha256", "api/generated/compas_occ.geometry.OCCNurbsSurface.space_u", "api/generated/compas_occ.geometry.OCCNurbsSurface.space_v", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_brep", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_json", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_jsonstring", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_mesh", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_polyhedron", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_quads", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_step", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_tesselation", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_triangles", "api/generated/compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces", "api/generated/compas_occ.geometry.OCCNurbsSurface.transform", "api/generated/compas_occ.geometry.OCCNurbsSurface.transformed", "api/generated/compas_occ.geometry.OCCNurbsSurface.translate", "api/generated/compas_occ.geometry.OCCNurbsSurface.translated", "api/generated/compas_occ.geometry.OCCNurbsSurface.validate_data", "api/generated/compas_occ.geometry.OCCRevolutionSurface", "api/generated/compas_occ.geometry.OCCRevolutionSurface.ToString", "api/generated/compas_occ.geometry.OCCRevolutionSurface.aabb", "api/generated/compas_occ.geometry.OCCRevolutionSurface.boundary", "api/generated/compas_occ.geometry.OCCRevolutionSurface.closest_point", "api/generated/compas_occ.geometry.OCCRevolutionSurface.compute", "api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_aabb", "api/generated/compas_occ.geometry.OCCRevolutionSurface.compute_obb", "api/generated/compas_occ.geometry.OCCRevolutionSurface.copy", "api/generated/compas_occ.geometry.OCCRevolutionSurface.curvature_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.frame_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_face", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_json", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_jsonstring", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_obj", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_occ", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_plane", "api/generated/compas_occ.geometry.OCCRevolutionSurface.from_step", "api/generated/compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve", "api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_line", "api/generated/compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane", "api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_u", "api/generated/compas_occ.geometry.OCCRevolutionSurface.isocurve_v", "api/generated/compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.normal_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.obb", "api/generated/compas_occ.geometry.OCCRevolutionSurface.point_at", "api/generated/compas_occ.geometry.OCCRevolutionSurface.pointgrid", "api/generated/compas_occ.geometry.OCCRevolutionSurface.rotate", "api/generated/compas_occ.geometry.OCCRevolutionSurface.rotated", "api/generated/compas_occ.geometry.OCCRevolutionSurface.scale", "api/generated/compas_occ.geometry.OCCRevolutionSurface.scaled", "api/generated/compas_occ.geometry.OCCRevolutionSurface.sha256", "api/generated/compas_occ.geometry.OCCRevolutionSurface.space_u", "api/generated/compas_occ.geometry.OCCRevolutionSurface.space_v", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_brep", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_json", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_jsonstring", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_mesh", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_polyhedron", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_quads", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_step", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_tesselation", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_triangles", "api/generated/compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces", "api/generated/compas_occ.geometry.OCCRevolutionSurface.transform", "api/generated/compas_occ.geometry.OCCRevolutionSurface.transformed", "api/generated/compas_occ.geometry.OCCRevolutionSurface.translate", "api/generated/compas_occ.geometry.OCCRevolutionSurface.translated", "api/generated/compas_occ.geometry.OCCRevolutionSurface.validate_data", "api/generated/compas_occ.geometry.OCCSurface", "api/generated/compas_occ.geometry.OCCSurface.ToString", "api/generated/compas_occ.geometry.OCCSurface.aabb", "api/generated/compas_occ.geometry.OCCSurface.boundary", "api/generated/compas_occ.geometry.OCCSurface.closest_point", "api/generated/compas_occ.geometry.OCCSurface.compute_aabb", "api/generated/compas_occ.geometry.OCCSurface.compute_obb", "api/generated/compas_occ.geometry.OCCSurface.copy", "api/generated/compas_occ.geometry.OCCSurface.curvature_at", "api/generated/compas_occ.geometry.OCCSurface.frame_at", "api/generated/compas_occ.geometry.OCCSurface.from_face", "api/generated/compas_occ.geometry.OCCSurface.from_json", "api/generated/compas_occ.geometry.OCCSurface.from_jsonstring", "api/generated/compas_occ.geometry.OCCSurface.from_obj", "api/generated/compas_occ.geometry.OCCSurface.from_occ", "api/generated/compas_occ.geometry.OCCSurface.from_plane", "api/generated/compas_occ.geometry.OCCSurface.from_step", "api/generated/compas_occ.geometry.OCCSurface.gaussian_curvature_at", "api/generated/compas_occ.geometry.OCCSurface.intersections_with_curve", "api/generated/compas_occ.geometry.OCCSurface.intersections_with_line", "api/generated/compas_occ.geometry.OCCSurface.intersections_with_plane", "api/generated/compas_occ.geometry.OCCSurface.isocurve_u", "api/generated/compas_occ.geometry.OCCSurface.isocurve_v", "api/generated/compas_occ.geometry.OCCSurface.mean_curvature_at", "api/generated/compas_occ.geometry.OCCSurface.normal_at", "api/generated/compas_occ.geometry.OCCSurface.obb", "api/generated/compas_occ.geometry.OCCSurface.point_at", "api/generated/compas_occ.geometry.OCCSurface.pointgrid", "api/generated/compas_occ.geometry.OCCSurface.rotate", "api/generated/compas_occ.geometry.OCCSurface.rotated", "api/generated/compas_occ.geometry.OCCSurface.scale", "api/generated/compas_occ.geometry.OCCSurface.scaled", "api/generated/compas_occ.geometry.OCCSurface.sha256", "api/generated/compas_occ.geometry.OCCSurface.space_u", "api/generated/compas_occ.geometry.OCCSurface.space_v", "api/generated/compas_occ.geometry.OCCSurface.to_brep", "api/generated/compas_occ.geometry.OCCSurface.to_json", "api/generated/compas_occ.geometry.OCCSurface.to_jsonstring", "api/generated/compas_occ.geometry.OCCSurface.to_mesh", "api/generated/compas_occ.geometry.OCCSurface.to_polyhedron", "api/generated/compas_occ.geometry.OCCSurface.to_quads", "api/generated/compas_occ.geometry.OCCSurface.to_step", "api/generated/compas_occ.geometry.OCCSurface.to_tesselation", "api/generated/compas_occ.geometry.OCCSurface.to_triangles", "api/generated/compas_occ.geometry.OCCSurface.to_vertices_and_faces", "api/generated/compas_occ.geometry.OCCSurface.transform", "api/generated/compas_occ.geometry.OCCSurface.transformed", "api/generated/compas_occ.geometry.OCCSurface.translate", "api/generated/compas_occ.geometry.OCCSurface.translated", "api/generated/compas_occ.geometry.OCCSurface.validate_data", "examples", "examples/breps/brep_explorer", "examples/breps/brep_fillet", "examples/breps/brep_from_booleans", "examples/breps/brep_from_mesh", "examples/breps/brep_overlap", "examples/breps/brep_slice", "examples/breps/brep_split", "examples/breps/brep_trim", "examples/breps/brep_with_hole", "examples/breps/brep_with_holes", "examples/breps/index", "examples/curves/curve_closest_parameters_curve", "examples/curves/curve_closest_point", "examples/curves/curve_comparison1", "examples/curves/curve_comparison2", "examples/curves/curve_divide", "examples/curves/curve_from_circle", "examples/curves/curve_from_interpolation", "examples/curves/curve_from_line", "examples/curves/curve_from_parameters", "examples/curves/curve_from_points", "examples/curves/curve_joining", "examples/curves/curve_segmentation", "examples/curves/index", "examples/surfaces/index", "examples/surfaces/surface_aabb", "examples/surfaces/surface_frames", "examples/surfaces/surface_from_extrusion-1", "examples/surfaces/surface_from_extrusion-2", "examples/surfaces/surface_from_fill", "examples/surfaces/surface_from_meshgrid", "examples/surfaces/surface_from_parameters", "examples/surfaces/surface_from_points", "examples/surfaces/surface_intersections_with_line", "examples/surfaces/surface_isocurves", "examples/surfaces/surface_jsondata", "examples/surfaces/surface_random", "examples/surfaces/surface_spacepoints", "index", "installation", "license", "tutorial"], "filenames": ["acknowledgements.rst", "api.rst", "api\\compas_occ.brep.rst", "api\\compas_occ.conversions.rst", "api\\compas_occ.geometry.rst", "api\\compas_occ.geometry.curves.rst", "api\\compas_occ.geometry.surfaces.rst", "api\\generated\\compas_occ.brep.OCCBrep.rst", "api\\generated\\compas_occ.brep.OCCBrep.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrep.check.rst", "api\\generated\\compas_occ.brep.OCCBrep.compute_aabb.rst", "api\\generated\\compas_occ.brep.OCCBrep.compute_obb.rst", "api\\generated\\compas_occ.brep.OCCBrep.contains.rst", "api\\generated\\compas_occ.brep.OCCBrep.contours.rst", "api\\generated\\compas_occ.brep.OCCBrep.copy.rst", "api\\generated\\compas_occ.brep.OCCBrep.cull_unused_edges.rst", "api\\generated\\compas_occ.brep.OCCBrep.cull_unused_faces.rst", "api\\generated\\compas_occ.brep.OCCBrep.cull_unused_loops.rst", "api\\generated\\compas_occ.brep.OCCBrep.cull_unused_vertices.rst", "api\\generated\\compas_occ.brep.OCCBrep.edge_faces.rst", "api\\generated\\compas_occ.brep.OCCBrep.edge_loop.rst", "api\\generated\\compas_occ.brep.OCCBrep.edge_loops.rst", "api\\generated\\compas_occ.brep.OCCBrep.fillet.rst", "api\\generated\\compas_occ.brep.OCCBrep.filleted.rst", "api\\generated\\compas_occ.brep.OCCBrep.fix.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_boolean_difference.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_boolean_intersection.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_boolean_union.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_box.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_brepfaces.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_breps.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_cone.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_curves.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_cylinder.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_extrusion.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_iges.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_loft.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_mesh.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_native.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_pipe.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_plane.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_planes.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_polygons.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_shape.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_sphere.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_step.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_surface.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_sweep.rst", "api\\generated\\compas_occ.brep.OCCBrep.from_torus.rst", "api\\generated\\compas_occ.brep.OCCBrep.heal.rst", "api\\generated\\compas_occ.brep.OCCBrep.make_solid.rst", "api\\generated\\compas_occ.brep.OCCBrep.overlap.rst", "api\\generated\\compas_occ.brep.OCCBrep.rotate.rst", "api\\generated\\compas_occ.brep.OCCBrep.rotated.rst", "api\\generated\\compas_occ.brep.OCCBrep.scale.rst", "api\\generated\\compas_occ.brep.OCCBrep.scaled.rst", "api\\generated\\compas_occ.brep.OCCBrep.sew.rst", "api\\generated\\compas_occ.brep.OCCBrep.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrep.simplify.rst", "api\\generated\\compas_occ.brep.OCCBrep.slice.rst", "api\\generated\\compas_occ.brep.OCCBrep.split.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_iges.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_meshes.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_polygons.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_step.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_stl.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_tesselation.rst", "api\\generated\\compas_occ.brep.OCCBrep.to_viewmesh.rst", "api\\generated\\compas_occ.brep.OCCBrep.transform.rst", "api\\generated\\compas_occ.brep.OCCBrep.transformed.rst", "api\\generated\\compas_occ.brep.OCCBrep.translate.rst", "api\\generated\\compas_occ.brep.OCCBrep.translated.rst", "api\\generated\\compas_occ.brep.OCCBrep.trim.rst", "api\\generated\\compas_occ.brep.OCCBrep.trimmed.rst", "api\\generated\\compas_occ.brep.OCCBrep.validate_data.rst", "api\\generated\\compas_occ.brep.OCCBrep.vertex_edges.rst", "api\\generated\\compas_occ.brep.OCCBrep.vertex_faces.rst", "api\\generated\\compas_occ.brep.OCCBrep.vertex_neighbors.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.copy.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_circle.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_curve.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_ellipse.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_line.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_point_point.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_points.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_vertex_vertex.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.from_vertices.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.is_equal.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.is_same.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_bezier.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_bspline.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_circle.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_curve.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_ellipse.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_hyperbola.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_line.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.to_parabola.rst", "api\\generated\\compas_occ.brep.OCCBrepEdge.validate_data.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.add_loop.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.add_loops.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.adjacent_faces.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.as_brep.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.copy.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.fix.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_cone.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_cylinder.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_plane.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_polygon.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_sphere.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_surface.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.from_torus.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.is_equal.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.is_same.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.is_valid.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_cone.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_cylinder.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_plane.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_polygon.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_sphere.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.to_torus.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.try_get_nurbssurface.rst", "api\\generated\\compas_occ.brep.OCCBrepFace.validate_data.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.copy.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.fix.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_edges.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_polygon.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.from_polyline.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.is_equal.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.is_same.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepLoop.validate_data.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.ToString.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.copy.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.from_json.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.from_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.from_point.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.is_equal.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.is_same.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.sha256.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.to_json.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.to_jsonstring.rst", "api\\generated\\compas_occ.brep.OCCBrepVertex.validate_data.rst", "api\\generated\\compas_occ.conversions.array1_from_floats1.rst", "api\\generated\\compas_occ.conversions.array1_from_integers1.rst", "api\\generated\\compas_occ.conversions.array1_from_points1.rst", "api\\generated\\compas_occ.conversions.array2_from_floats2.rst", "api\\generated\\compas_occ.conversions.array2_from_points2.rst", "api\\generated\\compas_occ.conversions.ax2_to_compas.rst", "api\\generated\\compas_occ.conversions.ax3_to_compas.rst", "api\\generated\\compas_occ.conversions.axis_to_compas.rst", "api\\generated\\compas_occ.conversions.axis_to_compas_vector.rst", "api\\generated\\compas_occ.conversions.axis_to_occ.rst", "api\\generated\\compas_occ.conversions.bezier_to_compas.rst", "api\\generated\\compas_occ.conversions.bspline_to_compas.rst", "api\\generated\\compas_occ.conversions.circle_to_compas.rst", "api\\generated\\compas_occ.conversions.circle_to_occ.rst", "api\\generated\\compas_occ.conversions.compas_mesh_to_occ_shell.rst", "api\\generated\\compas_occ.conversions.compas_quadmesh_to_occ_shell.rst", "api\\generated\\compas_occ.conversions.compas_transformation_to_trsf.rst", "api\\generated\\compas_occ.conversions.compas_trimesh_to_occ_shell.rst", "api\\generated\\compas_occ.conversions.cone_to_occ.rst", "api\\generated\\compas_occ.conversions.cylinder_to_compas.rst", "api\\generated\\compas_occ.conversions.cylinder_to_occ.rst", "api\\generated\\compas_occ.conversions.direction_to_compas.rst", "api\\generated\\compas_occ.conversions.direction_to_occ.rst", "api\\generated\\compas_occ.conversions.ellipse_to_compas.rst", "api\\generated\\compas_occ.conversions.ellipse_to_occ.rst", "api\\generated\\compas_occ.conversions.floats2_from_array2.rst", "api\\generated\\compas_occ.conversions.frame_to_occ_ax2.rst", "api\\generated\\compas_occ.conversions.frame_to_occ_ax3.rst", "api\\generated\\compas_occ.conversions.harray1_from_points1.rst", "api\\generated\\compas_occ.conversions.hyperbola_to_compas.rst", "api\\generated\\compas_occ.conversions.line_to_compas.rst", "api\\generated\\compas_occ.conversions.line_to_occ.rst", "api\\generated\\compas_occ.conversions.location_to_compas.rst", "api\\generated\\compas_occ.conversions.ngon_to_face.rst", "api\\generated\\compas_occ.conversions.parabola_to_compas.rst", "api\\generated\\compas_occ.conversions.plane_to_compas.rst", "api\\generated\\compas_occ.conversions.plane_to_occ.rst", "api\\generated\\compas_occ.conversions.plane_to_occ_ax2.rst", "api\\generated\\compas_occ.conversions.plane_to_occ_ax3.rst", "api\\generated\\compas_occ.conversions.point2d_to_compas.rst", "api\\generated\\compas_occ.conversions.point_to_compas.rst", "api\\generated\\compas_occ.conversions.point_to_occ.rst", "api\\generated\\compas_occ.conversions.points1_from_array1.rst", "api\\generated\\compas_occ.conversions.points2_from_array2.rst", "api\\generated\\compas_occ.conversions.quad_to_face.rst", "api\\generated\\compas_occ.conversions.sphere_to_compas.rst", "api\\generated\\compas_occ.conversions.sphere_to_occ.rst", "api\\generated\\compas_occ.conversions.torus_to_occ.rst", "api\\generated\\compas_occ.conversions.triangle_to_face.rst", "api\\generated\\compas_occ.conversions.vector2d_to_compas.rst", "api\\generated\\compas_occ.conversions.vector_to_compas.rst", "api\\generated\\compas_occ.conversions.vector_to_occ.rst", "api\\generated\\compas_occ.geometry.OCCCurve.rst", "api\\generated\\compas_occ.geometry.OCCCurve.ToString.rst", "api\\generated\\compas_occ.geometry.OCCCurve.aabb.rst", "api\\generated\\compas_occ.geometry.OCCCurve.closest_parameters_curve.rst", "api\\generated\\compas_occ.geometry.OCCCurve.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCCurve.closest_points_curve.rst", "api\\generated\\compas_occ.geometry.OCCCurve.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCCurve.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCCurve.copy.rst", "api\\generated\\compas_occ.geometry.OCCCurve.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.divide.rst", "api\\generated\\compas_occ.geometry.OCCCurve.divide_by_count.rst", "api\\generated\\compas_occ.geometry.OCCCurve.divide_by_length.rst", "api\\generated\\compas_occ.geometry.OCCCurve.embedded.rst", "api\\generated\\compas_occ.geometry.OCCCurve.fair.rst", "api\\generated\\compas_occ.geometry.OCCCurve.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_json.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCCurve.from_step.rst", "api\\generated\\compas_occ.geometry.OCCCurve.length.rst", "api\\generated\\compas_occ.geometry.OCCCurve.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.offset.rst", "api\\generated\\compas_occ.geometry.OCCCurve.parameter_at_distance.rst", "api\\generated\\compas_occ.geometry.OCCCurve.point_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.projected.rst", "api\\generated\\compas_occ.geometry.OCCCurve.reverse.rst", "api\\generated\\compas_occ.geometry.OCCCurve.reversed.rst", "api\\generated\\compas_occ.geometry.OCCCurve.rotate.rst", "api\\generated\\compas_occ.geometry.OCCCurve.rotated.rst", "api\\generated\\compas_occ.geometry.OCCCurve.scale.rst", "api\\generated\\compas_occ.geometry.OCCCurve.scaled.rst", "api\\generated\\compas_occ.geometry.OCCCurve.sha256.rst", "api\\generated\\compas_occ.geometry.OCCCurve.smooth.rst", "api\\generated\\compas_occ.geometry.OCCCurve.split.rst", "api\\generated\\compas_occ.geometry.OCCCurve.tangent_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_json.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_obj.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_points.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_polygon.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_polyline.rst", "api\\generated\\compas_occ.geometry.OCCCurve.to_step.rst", "api\\generated\\compas_occ.geometry.OCCCurve.transform.rst", "api\\generated\\compas_occ.geometry.OCCCurve.transformed.rst", "api\\generated\\compas_occ.geometry.OCCCurve.translate.rst", "api\\generated\\compas_occ.geometry.OCCCurve.translated.rst", "api\\generated\\compas_occ.geometry.OCCCurve.trim.rst", "api\\generated\\compas_occ.geometry.OCCCurve.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.ToString.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.aabb.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.copy.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.divide_by_count.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.divide_by_length.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.fair.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_json.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.from_step.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.length.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.offset.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.point_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.reverse.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.reversed.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.rotate.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.rotated.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.scale.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.scaled.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.sha256.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.smooth.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.split.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.tangent_at.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_json.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_obj.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_points.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_polygon.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_polyline.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.to_step.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.transform.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.transformed.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.translate.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.translated.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.trim.rst", "api\\generated\\compas_occ.geometry.OCCCurve2d.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.ToString.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.aabb.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.boundary.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.compute.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.copy.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_face.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_json.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_plane.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.from_step.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.intersections_with_line.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.isocurve_u.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.isocurve_v.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.obb.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.point_at.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.pointgrid.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.rotate.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.rotated.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.scale.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.scaled.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.sha256.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.space_u.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.space_v.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_brep.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_json.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_mesh.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_polyhedron.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_quads.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_step.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_tesselation.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_triangles.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.transform.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.transformed.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.translate.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.translated.rst", "api\\generated\\compas_occ.geometry.OCCExtrusionSurface.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.ToString.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.aabb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.closest_points_curve.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.copy.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.divide.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.divide_by_count.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.divide_by_length.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.elevate_degree.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.embedded.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.fair.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_arc.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_circle.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_ellipse.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_interpolation.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_json.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_line.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_native.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_parameters.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_points.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.from_step.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.insert_knot.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.join.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.joined.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.length.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.offset.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.parameter_at_distance.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.point_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.projected.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.reduce_degree.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.refine_knot.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.remove_knot.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.reverse.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.reversed.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.rotate.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.rotated.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.scale.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.scaled.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.segment.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.segmented.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.sha256.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.smooth.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.split.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.tangent_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_json.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_obj.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_points.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_polygon.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_polyline.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.to_step.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.transform.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.transformed.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.translate.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.translated.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.trim.rst", "api\\generated\\compas_occ.geometry.OCCNurbsCurve.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.ToString.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.aabb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.boundary.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.copy.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_extrusion.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_face.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_fill.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_interpolation.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_json.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_meshgrid.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_native.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_parameters.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_plane.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_points.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.from_step.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.intersections_with_curve.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.intersections_with_line.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.intersections_with_plane.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.isocurve_u.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.isocurve_v.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.mean_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.obb.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.point_at.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.pointgrid.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.rotate.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.rotated.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.scale.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.scaled.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.sha256.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.space_u.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.space_v.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_brep.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_json.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_mesh.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_polyhedron.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_quads.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_step.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_tesselation.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_triangles.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.transform.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.transformed.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.translate.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.translated.rst", "api\\generated\\compas_occ.geometry.OCCNurbsSurface.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.ToString.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.aabb.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.boundary.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.compute.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.copy.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_face.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_json.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_plane.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.from_step.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.intersections_with_line.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.isocurve_u.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.isocurve_v.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.obb.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.point_at.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.pointgrid.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.rotate.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.rotated.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.scale.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.scaled.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.sha256.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.space_u.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.space_v.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_brep.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_json.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_mesh.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_polyhedron.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_quads.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_step.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_tesselation.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_triangles.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.transform.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.transformed.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.translate.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.translated.rst", "api\\generated\\compas_occ.geometry.OCCRevolutionSurface.validate_data.rst", "api\\generated\\compas_occ.geometry.OCCSurface.rst", "api\\generated\\compas_occ.geometry.OCCSurface.ToString.rst", "api\\generated\\compas_occ.geometry.OCCSurface.aabb.rst", "api\\generated\\compas_occ.geometry.OCCSurface.boundary.rst", "api\\generated\\compas_occ.geometry.OCCSurface.closest_point.rst", "api\\generated\\compas_occ.geometry.OCCSurface.compute_aabb.rst", "api\\generated\\compas_occ.geometry.OCCSurface.compute_obb.rst", "api\\generated\\compas_occ.geometry.OCCSurface.copy.rst", "api\\generated\\compas_occ.geometry.OCCSurface.curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.frame_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_face.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_json.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_obj.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_occ.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_plane.rst", "api\\generated\\compas_occ.geometry.OCCSurface.from_step.rst", "api\\generated\\compas_occ.geometry.OCCSurface.gaussian_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.intersections_with_curve.rst", "api\\generated\\compas_occ.geometry.OCCSurface.intersections_with_line.rst", "api\\generated\\compas_occ.geometry.OCCSurface.intersections_with_plane.rst", "api\\generated\\compas_occ.geometry.OCCSurface.isocurve_u.rst", "api\\generated\\compas_occ.geometry.OCCSurface.isocurve_v.rst", "api\\generated\\compas_occ.geometry.OCCSurface.mean_curvature_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.normal_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.obb.rst", "api\\generated\\compas_occ.geometry.OCCSurface.point_at.rst", "api\\generated\\compas_occ.geometry.OCCSurface.pointgrid.rst", "api\\generated\\compas_occ.geometry.OCCSurface.rotate.rst", "api\\generated\\compas_occ.geometry.OCCSurface.rotated.rst", "api\\generated\\compas_occ.geometry.OCCSurface.scale.rst", "api\\generated\\compas_occ.geometry.OCCSurface.scaled.rst", "api\\generated\\compas_occ.geometry.OCCSurface.sha256.rst", "api\\generated\\compas_occ.geometry.OCCSurface.space_u.rst", "api\\generated\\compas_occ.geometry.OCCSurface.space_v.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_brep.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_json.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_jsonstring.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_mesh.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_polyhedron.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_quads.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_step.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_tesselation.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_triangles.rst", "api\\generated\\compas_occ.geometry.OCCSurface.to_vertices_and_faces.rst", "api\\generated\\compas_occ.geometry.OCCSurface.transform.rst", "api\\generated\\compas_occ.geometry.OCCSurface.transformed.rst", "api\\generated\\compas_occ.geometry.OCCSurface.translate.rst", "api\\generated\\compas_occ.geometry.OCCSurface.translated.rst", "api\\generated\\compas_occ.geometry.OCCSurface.validate_data.rst", "examples.rst", "examples\\breps\\brep_explorer.rst", "examples\\breps\\brep_fillet.rst", "examples\\breps\\brep_from_booleans.rst", "examples\\breps\\brep_from_mesh.rst", "examples\\breps\\brep_overlap.rst", "examples\\breps\\brep_slice.rst", "examples\\breps\\brep_split.rst", "examples\\breps\\brep_trim.rst", "examples\\breps\\brep_with_hole.rst", "examples\\breps\\brep_with_holes.rst", "examples\\breps\\index.rst", "examples\\curves\\curve_closest_parameters_curve.rst", "examples\\curves\\curve_closest_point.rst", "examples\\curves\\curve_comparison1.rst", "examples\\curves\\curve_comparison2.rst", "examples\\curves\\curve_divide.rst", "examples\\curves\\curve_from_circle.rst", "examples\\curves\\curve_from_interpolation.rst", "examples\\curves\\curve_from_line.rst", "examples\\curves\\curve_from_parameters.rst", "examples\\curves\\curve_from_points.rst", "examples\\curves\\curve_joining.rst", "examples\\curves\\curve_segmentation.rst", "examples\\curves\\index.rst", "examples\\surfaces\\index.rst", "examples\\surfaces\\surface_aabb.rst", "examples\\surfaces\\surface_frames.rst", "examples\\surfaces\\surface_from_extrusion-1.rst", "examples\\surfaces\\surface_from_extrusion-2.rst", "examples\\surfaces\\surface_from_fill.rst", "examples\\surfaces\\surface_from_meshgrid.rst", "examples\\surfaces\\surface_from_parameters.rst", "examples\\surfaces\\surface_from_points.rst", "examples\\surfaces\\surface_intersections_with_line.rst", "examples\\surfaces\\surface_isocurves.rst", "examples\\surfaces\\surface_jsondata.rst", "examples\\surfaces\\surface_random.rst", "examples\\surfaces\\surface_spacepoints.rst", "index.rst", "installation.rst", "license.rst", "tutorial.rst"], "titles": ["Acknowledgements", "API Reference", "compas_occ.brep", "compas_occ.conversions", "compas_occ.geometry", "Curves", "Surfaces", "OCCBrep", "OCCBrep.ToString", "OCCBrep.check", "OCCBrep.compute_aabb", "OCCBrep.compute_obb", "OCCBrep.contains", "OCCBrep.contours", "OCCBrep.copy", "OCCBrep.cull_unused_edges", "OCCBrep.cull_unused_faces", "OCCBrep.cull_unused_loops", "OCCBrep.cull_unused_vertices", "OCCBrep.edge_faces", "OCCBrep.edge_loop", "OCCBrep.edge_loops", "OCCBrep.fillet", "OCCBrep.filleted", "OCCBrep.fix", "OCCBrep.from_boolean_difference", "OCCBrep.from_boolean_intersection", "OCCBrep.from_boolean_union", "OCCBrep.from_box", "OCCBrep.from_brepfaces", "OCCBrep.from_breps", "OCCBrep.from_cone", "OCCBrep.from_curves", "OCCBrep.from_cylinder", "OCCBrep.from_extrusion", "OCCBrep.from_iges", "OCCBrep.from_json", "OCCBrep.from_jsonstring", "OCCBrep.from_loft", "OCCBrep.from_mesh", "OCCBrep.from_native", "OCCBrep.from_pipe", "OCCBrep.from_plane", "OCCBrep.from_planes", "OCCBrep.from_polygons", "OCCBrep.from_shape", "OCCBrep.from_sphere", "OCCBrep.from_step", "OCCBrep.from_surface", "OCCBrep.from_sweep", "OCCBrep.from_torus", "OCCBrep.heal", "OCCBrep.make_solid", "OCCBrep.overlap", "OCCBrep.rotate", "OCCBrep.rotated", "OCCBrep.scale", "OCCBrep.scaled", "OCCBrep.sew", "OCCBrep.sha256", "OCCBrep.simplify", "OCCBrep.slice", "OCCBrep.split", "OCCBrep.to_iges", "OCCBrep.to_json", "OCCBrep.to_jsonstring", "OCCBrep.to_meshes", "OCCBrep.to_polygons", "OCCBrep.to_step", "OCCBrep.to_stl", "OCCBrep.to_tesselation", "OCCBrep.to_viewmesh", "OCCBrep.transform", "OCCBrep.transformed", "OCCBrep.translate", "OCCBrep.translated", "OCCBrep.trim", "OCCBrep.trimmed", "OCCBrep.validate_data", "OCCBrep.vertex_edges", "OCCBrep.vertex_faces", "OCCBrep.vertex_neighbors", "OCCBrepEdge", "OCCBrepEdge.ToString", "OCCBrepEdge.copy", "OCCBrepEdge.from_circle", "OCCBrepEdge.from_curve", "OCCBrepEdge.from_ellipse", "OCCBrepEdge.from_json", "OCCBrepEdge.from_jsonstring", "OCCBrepEdge.from_line", "OCCBrepEdge.from_point_point", "OCCBrepEdge.from_points", "OCCBrepEdge.from_vertex_vertex", "OCCBrepEdge.from_vertices", "OCCBrepEdge.is_equal", "OCCBrepEdge.is_same", "OCCBrepEdge.sha256", "OCCBrepEdge.to_bezier", "OCCBrepEdge.to_bspline", "OCCBrepEdge.to_circle", "OCCBrepEdge.to_curve", "OCCBrepEdge.to_ellipse", "OCCBrepEdge.to_hyperbola", "OCCBrepEdge.to_json", "OCCBrepEdge.to_jsonstring", "OCCBrepEdge.to_line", "OCCBrepEdge.to_parabola", "OCCBrepEdge.validate_data", "OCCBrepFace", "OCCBrepFace.ToString", "OCCBrepFace.add_loop", "OCCBrepFace.add_loops", "OCCBrepFace.adjacent_faces", "OCCBrepFace.as_brep", "OCCBrepFace.copy", "OCCBrepFace.fix", "OCCBrepFace.from_cone", "OCCBrepFace.from_cylinder", "OCCBrepFace.from_json", "OCCBrepFace.from_jsonstring", "OCCBrepFace.from_plane", "OCCBrepFace.from_polygon", "OCCBrepFace.from_sphere", "OCCBrepFace.from_surface", "OCCBrepFace.from_torus", "OCCBrepFace.is_equal", "OCCBrepFace.is_same", "OCCBrepFace.is_valid", "OCCBrepFace.sha256", "OCCBrepFace.to_cone", "OCCBrepFace.to_cylinder", "OCCBrepFace.to_json", "OCCBrepFace.to_jsonstring", "OCCBrepFace.to_plane", "OCCBrepFace.to_polygon", "OCCBrepFace.to_sphere", "OCCBrepFace.to_torus", "OCCBrepFace.try_get_nurbssurface", "OCCBrepFace.validate_data", "OCCBrepLoop", "OCCBrepLoop.ToString", "OCCBrepLoop.copy", "OCCBrepLoop.fix", "OCCBrepLoop.from_edges", "OCCBrepLoop.from_json", "OCCBrepLoop.from_jsonstring", "OCCBrepLoop.from_polygon", "OCCBrepLoop.from_polyline", "OCCBrepLoop.is_equal", "OCCBrepLoop.is_same", "OCCBrepLoop.sha256", "OCCBrepLoop.to_json", "OCCBrepLoop.to_jsonstring", "OCCBrepLoop.validate_data", "OCCBrepVertex", "OCCBrepVertex.ToString", "OCCBrepVertex.copy", "OCCBrepVertex.from_json", "OCCBrepVertex.from_jsonstring", "OCCBrepVertex.from_point", "OCCBrepVertex.is_equal", "OCCBrepVertex.is_same", "OCCBrepVertex.sha256", "OCCBrepVertex.to_json", "OCCBrepVertex.to_jsonstring", "OCCBrepVertex.validate_data", "array1_from_floats1", "array1_from_integers1", "array1_from_points1", "array2_from_floats2", "array2_from_points2", "ax2_to_compas", "ax3_to_compas", "axis_to_compas", "axis_to_compas_vector", "axis_to_occ", "bezier_to_compas", "bspline_to_compas", "circle_to_compas", "circle_to_occ", "compas_mesh_to_occ_shell", "compas_quadmesh_to_occ_shell", "compas_transformation_to_trsf", "compas_trimesh_to_occ_shell", "cone_to_occ", "cylinder_to_compas", "cylinder_to_occ", "direction_to_compas", "direction_to_occ", "ellipse_to_compas", "ellipse_to_occ", "floats2_from_array2", "frame_to_occ_ax2", "frame_to_occ_ax3", "harray1_from_points1", "hyperbola_to_compas", "line_to_compas", "line_to_occ", "location_to_compas", "ngon_to_face", "parabola_to_compas", "plane_to_compas", "plane_to_occ", "plane_to_occ_ax2", "plane_to_occ_ax3", "point2d_to_compas", "point_to_compas", "point_to_occ", "points1_from_array1", "points2_from_array2", "quad_to_face", "sphere_to_compas", "sphere_to_occ", "torus_to_occ", "triangle_to_face", "vector2d_to_compas", "vector_to_compas", "vector_to_occ", "OCCCurve", "OCCCurve.ToString", "OCCCurve.aabb", "OCCCurve.closest_parameters_curve", "OCCCurve.closest_point", "OCCCurve.closest_points_curve", "OCCCurve.compute_aabb", "OCCCurve.compute_obb", "OCCCurve.copy", "OCCCurve.curvature_at", "OCCCurve.divide", "OCCCurve.divide_by_count", "OCCCurve.divide_by_length", "OCCCurve.embedded", "OCCCurve.fair", "OCCCurve.frame_at", "OCCCurve.from_json", "OCCCurve.from_jsonstring", "OCCCurve.from_obj", "OCCCurve.from_occ", "OCCCurve.from_step", "OCCCurve.length", "OCCCurve.normal_at", "OCCCurve.offset", "OCCCurve.parameter_at_distance", "OCCCurve.point_at", "OCCCurve.projected", "OCCCurve.reverse", "OCCCurve.reversed", "OCCCurve.rotate", "OCCCurve.rotated", "OCCCurve.scale", "OCCCurve.scaled", "OCCCurve.sha256", "OCCCurve.smooth", "OCCCurve.split", "OCCCurve.tangent_at", "OCCCurve.to_json", "OCCCurve.to_jsonstring", "OCCCurve.to_obj", "OCCCurve.to_points", "OCCCurve.to_polygon", "OCCCurve.to_polyline", "OCCCurve.to_step", "OCCCurve.transform", "OCCCurve.transformed", "OCCCurve.translate", "OCCCurve.translated", "OCCCurve.trim", "OCCCurve.validate_data", "OCCCurve2d", "OCCCurve2d.ToString", "OCCCurve2d.aabb", "OCCCurve2d.closest_point", "OCCCurve2d.compute_aabb", "OCCCurve2d.compute_obb", "OCCCurve2d.copy", "OCCCurve2d.curvature_at", "OCCCurve2d.divide_by_count", "OCCCurve2d.divide_by_length", "OCCCurve2d.fair", "OCCCurve2d.frame_at", "OCCCurve2d.from_json", "OCCCurve2d.from_jsonstring", "OCCCurve2d.from_obj", "OCCCurve2d.from_occ", "OCCCurve2d.from_step", "OCCCurve2d.length", "OCCCurve2d.normal_at", "OCCCurve2d.offset", "OCCCurve2d.point_at", "OCCCurve2d.reverse", "OCCCurve2d.reversed", "OCCCurve2d.rotate", "OCCCurve2d.rotated", "OCCCurve2d.scale", "OCCCurve2d.scaled", "OCCCurve2d.sha256", "OCCCurve2d.smooth", "OCCCurve2d.split", "OCCCurve2d.tangent_at", "OCCCurve2d.to_json", "OCCCurve2d.to_jsonstring", "OCCCurve2d.to_obj", "OCCCurve2d.to_points", "OCCCurve2d.to_polygon", "OCCCurve2d.to_polyline", "OCCCurve2d.to_step", "OCCCurve2d.transform", "OCCCurve2d.transformed", "OCCCurve2d.translate", "OCCCurve2d.translated", "OCCCurve2d.trim", "OCCCurve2d.validate_data", "OCCExtrusionSurface", "OCCExtrusionSurface.ToString", "OCCExtrusionSurface.aabb", "OCCExtrusionSurface.boundary", "OCCExtrusionSurface.closest_point", "OCCExtrusionSurface.compute", "OCCExtrusionSurface.compute_aabb", "OCCExtrusionSurface.compute_obb", "OCCExtrusionSurface.copy", "OCCExtrusionSurface.curvature_at", "OCCExtrusionSurface.frame_at", "OCCExtrusionSurface.from_face", "OCCExtrusionSurface.from_json", "OCCExtrusionSurface.from_jsonstring", "OCCExtrusionSurface.from_obj", "OCCExtrusionSurface.from_occ", "OCCExtrusionSurface.from_plane", "OCCExtrusionSurface.from_step", "OCCExtrusionSurface.gaussian_curvature_at", "OCCExtrusionSurface.intersections_with_curve", "OCCExtrusionSurface.intersections_with_line", "OCCExtrusionSurface.intersections_with_plane", "OCCExtrusionSurface.isocurve_u", "OCCExtrusionSurface.isocurve_v", "OCCExtrusionSurface.mean_curvature_at", "OCCExtrusionSurface.normal_at", "OCCExtrusionSurface.obb", "OCCExtrusionSurface.point_at", "OCCExtrusionSurface.pointgrid", "OCCExtrusionSurface.rotate", "OCCExtrusionSurface.rotated", "OCCExtrusionSurface.scale", "OCCExtrusionSurface.scaled", "OCCExtrusionSurface.sha256", "OCCExtrusionSurface.space_u", "OCCExtrusionSurface.space_v", "OCCExtrusionSurface.to_brep", "OCCExtrusionSurface.to_json", "OCCExtrusionSurface.to_jsonstring", "OCCExtrusionSurface.to_mesh", "OCCExtrusionSurface.to_polyhedron", "OCCExtrusionSurface.to_quads", "OCCExtrusionSurface.to_step", "OCCExtrusionSurface.to_tesselation", "OCCExtrusionSurface.to_triangles", "OCCExtrusionSurface.to_vertices_and_faces", "OCCExtrusionSurface.transform", "OCCExtrusionSurface.transformed", "OCCExtrusionSurface.translate", "OCCExtrusionSurface.translated", "OCCExtrusionSurface.validate_data", "OCCNurbsCurve", "OCCNurbsCurve.ToString", "OCCNurbsCurve.aabb", "OCCNurbsCurve.closest_parameters_curve", "OCCNurbsCurve.closest_point", "OCCNurbsCurve.closest_points_curve", "OCCNurbsCurve.compute_aabb", "OCCNurbsCurve.compute_obb", "OCCNurbsCurve.copy", "OCCNurbsCurve.curvature_at", "OCCNurbsCurve.divide", "OCCNurbsCurve.divide_by_count", "OCCNurbsCurve.divide_by_length", "OCCNurbsCurve.elevate_degree", "OCCNurbsCurve.embedded", "OCCNurbsCurve.fair", "OCCNurbsCurve.frame_at", "OCCNurbsCurve.from_arc", "OCCNurbsCurve.from_circle", "OCCNurbsCurve.from_ellipse", "OCCNurbsCurve.from_interpolation", "OCCNurbsCurve.from_json", "OCCNurbsCurve.from_jsonstring", "OCCNurbsCurve.from_line", "OCCNurbsCurve.from_native", "OCCNurbsCurve.from_obj", "OCCNurbsCurve.from_occ", "OCCNurbsCurve.from_parameters", "OCCNurbsCurve.from_points", "OCCNurbsCurve.from_step", "OCCNurbsCurve.insert_knot", "OCCNurbsCurve.join", "OCCNurbsCurve.joined", "OCCNurbsCurve.length", "OCCNurbsCurve.normal_at", "OCCNurbsCurve.offset", "OCCNurbsCurve.parameter_at_distance", "OCCNurbsCurve.point_at", "OCCNurbsCurve.projected", "OCCNurbsCurve.reduce_degree", "OCCNurbsCurve.refine_knot", "OCCNurbsCurve.remove_knot", "OCCNurbsCurve.reverse", "OCCNurbsCurve.reversed", "OCCNurbsCurve.rotate", "OCCNurbsCurve.rotated", "OCCNurbsCurve.scale", "OCCNurbsCurve.scaled", "OCCNurbsCurve.segment", "OCCNurbsCurve.segmented", "OCCNurbsCurve.sha256", "OCCNurbsCurve.smooth", "OCCNurbsCurve.split", "OCCNurbsCurve.tangent_at", "OCCNurbsCurve.to_json", "OCCNurbsCurve.to_jsonstring", "OCCNurbsCurve.to_obj", "OCCNurbsCurve.to_points", "OCCNurbsCurve.to_polygon", "OCCNurbsCurve.to_polyline", "OCCNurbsCurve.to_step", "OCCNurbsCurve.transform", "OCCNurbsCurve.transformed", "OCCNurbsCurve.translate", "OCCNurbsCurve.translated", "OCCNurbsCurve.trim", "OCCNurbsCurve.validate_data", "OCCNurbsSurface", "OCCNurbsSurface.ToString", "OCCNurbsSurface.aabb", "OCCNurbsSurface.boundary", "OCCNurbsSurface.closest_point", "OCCNurbsSurface.compute_aabb", "OCCNurbsSurface.compute_obb", "OCCNurbsSurface.copy", "OCCNurbsSurface.curvature_at", "OCCNurbsSurface.frame_at", "OCCNurbsSurface.from_extrusion", "OCCNurbsSurface.from_face", "OCCNurbsSurface.from_fill", "OCCNurbsSurface.from_interpolation", "OCCNurbsSurface.from_json", "OCCNurbsSurface.from_jsonstring", "OCCNurbsSurface.from_meshgrid", "OCCNurbsSurface.from_native", "OCCNurbsSurface.from_obj", "OCCNurbsSurface.from_occ", "OCCNurbsSurface.from_parameters", "OCCNurbsSurface.from_plane", "OCCNurbsSurface.from_points", "OCCNurbsSurface.from_step", "OCCNurbsSurface.gaussian_curvature_at", "OCCNurbsSurface.intersections_with_curve", "OCCNurbsSurface.intersections_with_line", "OCCNurbsSurface.intersections_with_plane", "OCCNurbsSurface.isocurve_u", "OCCNurbsSurface.isocurve_v", "OCCNurbsSurface.mean_curvature_at", "OCCNurbsSurface.normal_at", "OCCNurbsSurface.obb", "OCCNurbsSurface.point_at", "OCCNurbsSurface.pointgrid", "OCCNurbsSurface.rotate", "OCCNurbsSurface.rotated", "OCCNurbsSurface.scale", "OCCNurbsSurface.scaled", "OCCNurbsSurface.sha256", "OCCNurbsSurface.space_u", "OCCNurbsSurface.space_v", "OCCNurbsSurface.to_brep", "OCCNurbsSurface.to_json", "OCCNurbsSurface.to_jsonstring", "OCCNurbsSurface.to_mesh", "OCCNurbsSurface.to_polyhedron", "OCCNurbsSurface.to_quads", "OCCNurbsSurface.to_step", "OCCNurbsSurface.to_tesselation", "OCCNurbsSurface.to_triangles", "OCCNurbsSurface.to_vertices_and_faces", "OCCNurbsSurface.transform", "OCCNurbsSurface.transformed", "OCCNurbsSurface.translate", "OCCNurbsSurface.translated", "OCCNurbsSurface.validate_data", "OCCRevolutionSurface", "OCCRevolutionSurface.ToString", "OCCRevolutionSurface.aabb", "OCCRevolutionSurface.boundary", "OCCRevolutionSurface.closest_point", "OCCRevolutionSurface.compute", "OCCRevolutionSurface.compute_aabb", "OCCRevolutionSurface.compute_obb", "OCCRevolutionSurface.copy", "OCCRevolutionSurface.curvature_at", "OCCRevolutionSurface.frame_at", "OCCRevolutionSurface.from_face", "OCCRevolutionSurface.from_json", "OCCRevolutionSurface.from_jsonstring", "OCCRevolutionSurface.from_obj", "OCCRevolutionSurface.from_occ", "OCCRevolutionSurface.from_plane", "OCCRevolutionSurface.from_step", "OCCRevolutionSurface.gaussian_curvature_at", "OCCRevolutionSurface.intersections_with_curve", "OCCRevolutionSurface.intersections_with_line", "OCCRevolutionSurface.intersections_with_plane", "OCCRevolutionSurface.isocurve_u", "OCCRevolutionSurface.isocurve_v", "OCCRevolutionSurface.mean_curvature_at", "OCCRevolutionSurface.normal_at", "OCCRevolutionSurface.obb", "OCCRevolutionSurface.point_at", "OCCRevolutionSurface.pointgrid", "OCCRevolutionSurface.rotate", "OCCRevolutionSurface.rotated", "OCCRevolutionSurface.scale", "OCCRevolutionSurface.scaled", "OCCRevolutionSurface.sha256", "OCCRevolutionSurface.space_u", "OCCRevolutionSurface.space_v", "OCCRevolutionSurface.to_brep", "OCCRevolutionSurface.to_json", "OCCRevolutionSurface.to_jsonstring", "OCCRevolutionSurface.to_mesh", "OCCRevolutionSurface.to_polyhedron", "OCCRevolutionSurface.to_quads", "OCCRevolutionSurface.to_step", "OCCRevolutionSurface.to_tesselation", "OCCRevolutionSurface.to_triangles", "OCCRevolutionSurface.to_vertices_and_faces", "OCCRevolutionSurface.transform", "OCCRevolutionSurface.transformed", "OCCRevolutionSurface.translate", "OCCRevolutionSurface.translated", "OCCRevolutionSurface.validate_data", "OCCSurface", "OCCSurface.ToString", "OCCSurface.aabb", "OCCSurface.boundary", "OCCSurface.closest_point", "OCCSurface.compute_aabb", "OCCSurface.compute_obb", "OCCSurface.copy", "OCCSurface.curvature_at", "OCCSurface.frame_at", "OCCSurface.from_face", "OCCSurface.from_json", "OCCSurface.from_jsonstring", "OCCSurface.from_obj", "OCCSurface.from_occ", "OCCSurface.from_plane", "OCCSurface.from_step", "OCCSurface.gaussian_curvature_at", "OCCSurface.intersections_with_curve", "OCCSurface.intersections_with_line", "OCCSurface.intersections_with_plane", "OCCSurface.isocurve_u", "OCCSurface.isocurve_v", "OCCSurface.mean_curvature_at", "OCCSurface.normal_at", "OCCSurface.obb", "OCCSurface.point_at", "OCCSurface.pointgrid", "OCCSurface.rotate", "OCCSurface.rotated", "OCCSurface.scale", "OCCSurface.scaled", "OCCSurface.sha256", "OCCSurface.space_u", "OCCSurface.space_v", "OCCSurface.to_brep", "OCCSurface.to_json", "OCCSurface.to_jsonstring", "OCCSurface.to_mesh", "OCCSurface.to_polyhedron", "OCCSurface.to_quads", "OCCSurface.to_step", "OCCSurface.to_tesselation", "OCCSurface.to_triangles", "OCCSurface.to_vertices_and_faces", "OCCSurface.transform", "OCCSurface.transformed", "OCCSurface.translate", "OCCSurface.translated", "OCCSurface.validate_data", "Examples", "Explore Brep Topology", "Add a Fillet to the Edges of a Brep", "Brep Shape From Booleans", "Brep From Mesh", "Find the Overlap Between Two Breps", "Slice a Brep With a Plane", "Split a Brep With a Plane", "Trim a Brep With a Plane", "Brep with Hole", "Brep with Holes", "Breps", "Curve Closest Parameters Curve", "Curve Closest Point", "Curve Comparison 1", "Curve Comparison 2", "Curve Divide", "Curve From Circle", "Curve From Interpolation", "Curve From Line", "Curve From Parameters", "Curve From Control Points", "Curve Joining", "Curve Segmentation", "Curves", "Surfaces", "Surface Axis-Aligned Bounding Box", "Surface Frames", "Surface From Extrusion 1", "Surface From Extrusion 2", "Surface From Fill", "Surface From Meshgrid", "Surface From Parameters", "Surface From Points", "Surface Intersections With Line", "Surface Isocurves", "Surface JSON Data", "Surface With Random Control Points", "Surface Points Over UV Space", "COMPAS OCC", "Installation", "License", "Tutorial"], "terms": {"compas_occ": [1, 7, 82, 109, 111, 112, 117, 118, 121, 123, 124, 125, 140, 144, 155, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 232, 245, 269, 313, 321, 332, 364, 372, 378, 402, 431, 438, 441, 456, 488, 496, 507, 539, 546, 557, 598, 599, 604, 628, 629, 631], "brep": [1, 7, 12, 13, 14, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 53, 61, 62, 63, 66, 67, 68, 69, 71, 72, 73, 76, 77, 82, 109, 111, 112, 114, 117, 118, 121, 122, 123, 124, 125, 140, 144, 155, 200, 211, 215, 349, 473, 524, 574, 589, 628], "convers": [1, 8, 83, 110, 141, 156, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 220, 270, 314, 365, 432, 489, 540, 628], "geometri": [1, 10, 11, 12, 38, 41, 42, 43, 54, 55, 56, 57, 60, 66, 67, 68, 69, 70, 72, 73, 74, 75, 82, 85, 86, 87, 90, 91, 92, 94, 98, 99, 100, 101, 102, 103, 106, 107, 109, 113, 114, 117, 118, 121, 122, 123, 124, 125, 130, 131, 134, 135, 136, 137, 138, 147, 148, 160, 169, 171, 175, 176, 180, 183, 185, 187, 189, 191, 193, 194, 195, 198, 203, 204, 205, 208, 213, 214, 218, 219, 225, 226, 232, 237, 239, 241, 242, 245, 247, 248, 249, 250, 251, 258, 259, 260, 261, 262, 264, 265, 266, 269, 271, 272, 273, 274, 277, 278, 283, 285, 287, 291, 292, 293, 294, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 313, 319, 320, 321, 327, 329, 330, 332, 334, 338, 342, 343, 344, 345, 349, 354, 355, 357, 358, 360, 361, 362, 364, 370, 371, 372, 378, 381, 382, 383, 387, 388, 389, 393, 398, 399, 402, 407, 408, 409, 410, 411, 420, 421, 422, 423, 424, 426, 427, 428, 431, 436, 437, 438, 441, 444, 447, 448, 449, 452, 456, 458, 462, 466, 467, 468, 469, 473, 478, 479, 481, 482, 484, 485, 486, 488, 494, 495, 496, 502, 504, 505, 507, 509, 513, 517, 518, 519, 520, 524, 529, 530, 532, 533, 535, 536, 537, 539, 544, 545, 546, 552, 554, 555, 557, 559, 563, 567, 568, 569, 570, 574, 579, 580, 582, 583, 585, 586, 587, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 631], "none": [3, 9, 15, 16, 17, 18, 22, 23, 24, 41, 48, 51, 52, 54, 55, 56, 57, 58, 60, 61, 63, 68, 69, 72, 74, 76, 84, 85, 86, 90, 98, 99, 103, 107, 111, 112, 115, 116, 117, 118, 121, 123, 124, 125, 138, 142, 143, 157, 172, 173, 175, 179, 186, 188, 190, 197, 202, 206, 207, 212, 216, 217, 233, 246, 248, 249, 250, 251, 258, 259, 262, 263, 265, 279, 286, 290, 292, 293, 294, 295, 302, 303, 306, 307, 309, 318, 342, 343, 344, 345, 352, 353, 354, 355, 357, 358, 359, 361, 379, 381, 395, 396, 406, 408, 409, 410, 411, 412, 420, 421, 424, 425, 427, 443, 466, 467, 468, 469, 476, 477, 478, 479, 481, 482, 483, 485, 493, 517, 518, 519, 520, 527, 528, 529, 530, 532, 533, 534, 536, 567, 568, 569, 570, 577, 578, 579, 580, 582, 583, 584, 586], "curv": [4, 12, 32, 34, 38, 41, 69, 70, 82, 86, 98, 101, 177, 178, 219, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 234, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 255, 258, 259, 260, 261, 262, 263, 269, 271, 272, 275, 276, 277, 278, 280, 283, 284, 285, 286, 287, 289, 290, 291, 299, 302, 303, 304, 305, 306, 307, 313, 316, 317, 318, 323, 332, 334, 335, 336, 364, 366, 367, 368, 369, 372, 373, 374, 375, 376, 378, 380, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 395, 396, 397, 398, 399, 400, 401, 402, 406, 407, 412, 413, 417, 420, 421, 422, 423, 424, 425, 431, 434, 435, 440, 441, 443, 456, 458, 459, 460, 488, 491, 492, 493, 498, 507, 509, 510, 511, 542, 543, 548, 557, 559, 560, 561, 589, 598, 617, 618, 619, 624, 625, 628], "surfac": [4, 7, 12, 48, 66, 86, 109, 124, 130, 131, 134, 136, 137, 138, 200, 211, 232, 245, 269, 313, 315, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 331, 337, 338, 339, 340, 341, 347, 348, 349, 352, 353, 354, 355, 356, 357, 358, 359, 378, 402, 431, 433, 434, 435, 438, 439, 441, 442, 443, 444, 447, 448, 449, 450, 451, 452, 453, 454, 455, 461, 462, 463, 464, 465, 471, 472, 473, 476, 477, 478, 479, 480, 481, 482, 483, 488, 490, 491, 492, 493, 496, 497, 499, 502, 503, 504, 505, 506, 512, 513, 514, 515, 516, 522, 523, 524, 527, 528, 529, 530, 531, 532, 533, 534, 539, 541, 542, 543, 546, 547, 549, 552, 553, 554, 555, 556, 562, 563, 564, 565, 566, 572, 573, 574, 577, 578, 579, 580, 581, 582, 583, 584, 589, 598, 628], "class": [7, 8, 82, 83, 109, 110, 140, 141, 155, 156, 169, 176, 180, 183, 185, 187, 189, 191, 193, 194, 195, 198, 203, 204, 205, 208, 211, 213, 214, 215, 218, 219, 220, 269, 270, 313, 314, 364, 365, 431, 432, 488, 489, 539, 540], "arg": [7, 14, 219, 269, 313, 364, 431, 488, 539], "kwarg": [7, 14, 219, 269, 313, 364, 431, 488, 539], "base": [7, 54, 55, 68, 82, 109, 140, 155, 219, 248, 249, 269, 292, 293, 313, 342, 343, 364, 408, 409, 431, 466, 467, 488, 517, 518, 539, 567, 568, 623, 631], "boundari": [7, 117, 118, 121, 123, 124, 125, 625, 628, 631], "represent": [7, 8, 64, 65, 83, 104, 105, 110, 114, 132, 133, 141, 152, 153, 156, 164, 165, 220, 256, 257, 270, 300, 301, 314, 349, 350, 351, 365, 418, 419, 432, 473, 474, 475, 489, 524, 525, 526, 540, 574, 575, 576, 628, 631], "geometr": [7, 12, 82, 109, 140, 155], "entiti": 7, "attribut": [7, 82, 109, 140, 155, 219, 269, 313, 364, 431, 488, 539], "vertic": [7, 18, 81, 82, 85, 86, 90, 93, 94, 109, 140, 161, 162, 358, 482, 533, 583, 590, 591], "list": [7, 13, 19, 21, 22, 23, 25, 29, 32, 38, 43, 44, 53, 62, 66, 70, 79, 80, 81, 82, 92, 94, 109, 112, 113, 140, 144, 167, 168, 169, 170, 171, 192, 195, 209, 210, 229, 230, 231, 259, 277, 278, 303, 307, 316, 332, 333, 334, 347, 348, 354, 357, 358, 364, 374, 375, 376, 384, 391, 392, 421, 431, 434, 444, 451, 453, 456, 457, 458, 471, 472, 478, 481, 482, 491, 507, 508, 509, 522, 523, 529, 532, 533, 539, 542, 557, 558, 559, 572, 573, 579, 582, 583, 591, 623], "occbrepvertex": [7, 79, 80, 81, 628], "read": [7, 82, 109, 140, 155, 219, 269, 364, 431, 539], "onli": [7, 82, 109, 140, 155, 219, 229, 230, 231, 269, 272, 277, 278, 364, 374, 375, 376, 431, 539], "The": [7, 12, 13, 21, 22, 23, 36, 37, 40, 41, 45, 48, 53, 54, 55, 56, 57, 61, 64, 65, 66, 74, 75, 76, 77, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 104, 105, 108, 111, 112, 115, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 132, 133, 139, 142, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 157, 158, 159, 160, 161, 162, 164, 165, 166, 172, 173, 174, 175, 177, 178, 179, 180, 185, 186, 187, 188, 189, 190, 191, 193, 194, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 212, 213, 214, 216, 217, 218, 219, 222, 223, 224, 228, 229, 230, 231, 232, 234, 235, 236, 237, 239, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 257, 258, 259, 260, 261, 264, 265, 266, 268, 269, 272, 276, 277, 278, 280, 281, 282, 283, 285, 287, 289, 292, 293, 294, 295, 299, 300, 301, 302, 303, 304, 305, 307, 308, 309, 310, 312, 313, 317, 325, 326, 327, 328, 329, 330, 341, 342, 343, 344, 345, 347, 348, 350, 351, 352, 353, 354, 357, 358, 360, 361, 362, 363, 364, 367, 368, 369, 373, 374, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 389, 391, 392, 393, 395, 396, 398, 399, 400, 401, 402, 408, 409, 410, 411, 417, 418, 419, 420, 421, 422, 423, 426, 427, 428, 430, 431, 435, 441, 444, 445, 446, 449, 450, 451, 452, 453, 465, 466, 467, 468, 469, 471, 472, 474, 475, 476, 477, 478, 481, 482, 484, 485, 486, 487, 488, 492, 500, 501, 502, 503, 504, 505, 516, 517, 518, 519, 520, 522, 523, 525, 526, 527, 528, 529, 532, 533, 535, 536, 537, 538, 539, 543, 550, 551, 552, 553, 554, 555, 566, 567, 568, 569, 570, 572, 573, 575, 576, 577, 578, 579, 582, 583, 585, 586, 587, 588, 628, 630, 631], "edg": [7, 15, 19, 20, 21, 22, 23, 60, 79, 82, 85, 86, 87, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 106, 107, 109, 140, 144, 589, 590, 598, 600, 628], "occbrepedg": [7, 19, 21, 22, 23, 79, 598, 599, 628], "loop": [7, 17, 20, 21, 48, 109, 111, 112, 117, 118, 121, 123, 124, 125, 140, 143, 144, 147, 148, 149, 150, 591, 598], "occbreploop": [7, 21, 48, 111, 112, 117, 118, 121, 123, 124, 125, 598, 599, 628], "face": [7, 16, 19, 29, 59, 60, 66, 67, 80, 97, 109, 111, 112, 113, 114, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 134, 135, 136, 137, 151, 163, 182, 184, 200, 211, 215, 252, 296, 324, 346, 352, 353, 354, 357, 358, 414, 442, 470, 476, 477, 478, 481, 482, 499, 521, 527, 528, 529, 532, 533, 549, 571, 577, 578, 579, 582, 583, 590, 594, 598, 599], "occbrepfac": [7, 19, 29, 53, 61, 80, 598, 599, 628], "frame": [7, 172, 173, 179, 186, 190, 193, 194, 196, 199, 201, 212, 234, 280, 307, 323, 380, 440, 498, 548, 589, 592, 598, 599, 614, 628], "local": [7, 234, 280, 307, 323, 380, 440, 498, 548, 629], "coordin": [7, 193, 194, 204, 205, 307], "system": [7, 193, 194, 204, 205, 307], "area": 7, "float": [7, 22, 23, 41, 42, 48, 53, 54, 55, 56, 57, 69, 70, 85, 86, 90, 121, 124, 167, 170, 192, 219, 221, 222, 223, 224, 228, 229, 230, 231, 234, 240, 241, 242, 243, 244, 248, 249, 250, 251, 255, 269, 272, 276, 277, 278, 280, 286, 287, 289, 292, 293, 294, 295, 299, 307, 315, 317, 322, 323, 331, 335, 336, 337, 338, 339, 340, 342, 343, 344, 345, 347, 348, 364, 366, 367, 368, 369, 373, 374, 375, 376, 380, 384, 391, 395, 396, 397, 398, 399, 400, 401, 408, 409, 410, 411, 412, 413, 417, 431, 433, 435, 439, 440, 444, 451, 455, 459, 460, 461, 462, 463, 464, 466, 467, 468, 469, 471, 472, 490, 492, 497, 498, 506, 510, 511, 512, 513, 514, 515, 517, 518, 519, 520, 522, 523, 539, 541, 543, 547, 548, 556, 560, 561, 562, 563, 564, 565, 567, 568, 569, 570, 572, 573], "volum": 7, "region": 7, "contain": [7, 35, 36, 37, 47, 88, 89, 119, 120, 145, 146, 158, 159, 235, 236, 281, 282, 325, 326, 385, 386, 445, 446, 500, 501, 550, 551], "method": [7, 8, 82, 83, 109, 110, 140, 141, 155, 156, 219, 220, 269, 270, 313, 314, 364, 365, 431, 432, 488, 489, 539, 540], "inherit": [7, 82, 109, 140, 155, 219, 269, 313, 364, 431, 488, 539], "convert": [8, 52, 64, 65, 66, 67, 71, 83, 98, 99, 100, 102, 103, 104, 105, 106, 107, 110, 130, 131, 132, 133, 134, 135, 136, 137, 138, 141, 152, 153, 156, 164, 165, 174, 175, 176, 181, 182, 183, 184, 185, 186, 187, 189, 193, 194, 197, 198, 200, 202, 203, 204, 205, 208, 211, 212, 213, 214, 215, 218, 220, 256, 257, 259, 260, 261, 270, 300, 301, 303, 304, 305, 314, 349, 350, 351, 352, 353, 354, 356, 357, 358, 365, 418, 419, 421, 422, 423, 432, 473, 474, 475, 476, 477, 478, 480, 481, 482, 489, 524, 525, 526, 527, 528, 529, 531, 532, 533, 540, 574, 575, 576, 577, 578, 579, 581, 582, 583, 593], "instanc": [8, 36, 37, 83, 88, 89, 110, 119, 120, 141, 145, 146, 156, 158, 159, 220, 235, 236, 270, 281, 282, 314, 325, 326, 365, 385, 386, 432, 445, 446, 489, 500, 501, 540, 550, 551], "string": [8, 37, 65, 83, 89, 105, 110, 120, 133, 141, 146, 153, 156, 159, 165, 220, 236, 257, 270, 282, 301, 314, 326, 351, 365, 386, 419, 432, 446, 475, 489, 501, 526, 540, 551, 576, 625], "thi": [8, 14, 36, 37, 53, 55, 57, 72, 75, 78, 83, 84, 88, 89, 95, 96, 101, 108, 110, 113, 114, 115, 119, 120, 126, 127, 139, 141, 142, 145, 146, 149, 150, 154, 156, 157, 158, 159, 161, 162, 166, 220, 235, 236, 242, 249, 251, 263, 264, 266, 268, 270, 281, 282, 293, 295, 308, 310, 312, 314, 325, 326, 343, 345, 359, 360, 362, 363, 365, 385, 386, 395, 396, 399, 409, 411, 412, 413, 425, 426, 428, 430, 432, 445, 446, 467, 469, 483, 484, 486, 487, 489, 500, 501, 518, 520, 534, 535, 537, 538, 540, 550, 551, 568, 570, 584, 585, 587, 588, 598, 630, 631], "exist": [8, 83, 110, 141, 156, 220, 238, 270, 284, 314, 324, 328, 365, 390, 432, 442, 450, 489, 499, 503, 540, 549, 553], "net": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "compat": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "when": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540, 631], "us": [8, 14, 53, 59, 62, 74, 75, 78, 83, 97, 108, 110, 129, 139, 141, 151, 154, 156, 163, 166, 220, 229, 230, 231, 252, 259, 264, 265, 266, 268, 270, 296, 303, 308, 309, 310, 312, 314, 318, 346, 352, 353, 354, 357, 358, 360, 361, 362, 363, 365, 374, 375, 376, 414, 421, 426, 427, 428, 430, 432, 470, 476, 477, 478, 481, 482, 484, 485, 486, 487, 489, 493, 521, 527, 528, 529, 532, 533, 535, 536, 537, 538, 540, 571, 577, 578, 579, 582, 583, 585, 586, 587, 588, 628, 629, 630], "ironpython": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "implicit": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "usual": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "take": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "place": [8, 22, 83, 110, 141, 156, 220, 270, 307, 314, 365, 432, 489, 540], "cpython": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "kick": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "its": [8, 64, 65, 83, 104, 105, 110, 132, 133, 141, 152, 153, 156, 164, 165, 220, 256, 257, 270, 300, 301, 314, 350, 351, 365, 418, 419, 432, 474, 475, 489, 525, 526, 540, 575, 576], "default": [8, 54, 55, 56, 57, 64, 65, 83, 84, 104, 105, 110, 115, 132, 133, 141, 142, 152, 153, 156, 157, 164, 165, 220, 248, 249, 250, 251, 256, 257, 259, 260, 270, 272, 292, 293, 294, 295, 300, 301, 303, 304, 314, 342, 343, 344, 345, 350, 351, 352, 353, 354, 357, 358, 365, 408, 409, 410, 411, 418, 419, 421, 422, 432, 466, 467, 468, 469, 474, 475, 476, 477, 478, 481, 482, 489, 517, 518, 519, 520, 525, 526, 527, 528, 529, 532, 533, 540, 567, 568, 569, 570, 575, 576, 577, 578, 579, 582, 583], "print": [8, 64, 65, 83, 104, 105, 110, 132, 133, 141, 152, 153, 156, 164, 165, 169, 171, 195, 209, 210, 220, 256, 257, 270, 300, 301, 314, 350, 351, 365, 418, 419, 432, 474, 475, 489, 525, 526, 540, 575, 576, 605, 612, 625], "self": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "gettyp": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "fullnam": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "similar": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540, 628], "overrid": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "object": [8, 12, 36, 37, 64, 65, 78, 83, 84, 88, 89, 104, 105, 108, 110, 115, 119, 120, 132, 133, 139, 141, 142, 145, 146, 152, 153, 154, 156, 157, 158, 159, 164, 165, 166, 219, 220, 235, 236, 256, 257, 268, 269, 270, 281, 282, 300, 301, 312, 314, 325, 326, 349, 350, 351, 352, 353, 363, 365, 385, 386, 388, 418, 419, 430, 432, 445, 446, 448, 473, 474, 475, 476, 477, 487, 489, 500, 501, 524, 525, 526, 527, 528, 538, 539, 540, 550, 551, 574, 575, 576, 577, 578, 588, 628], "fix": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "make": [8, 29, 42, 43, 83, 84, 110, 115, 141, 142, 156, 157, 220, 227, 270, 275, 314, 321, 365, 372, 432, 438, 489, 496, 540, 546, 591], "rhino": [8, 83, 110, 141, 156, 220, 270, 314, 365, 388, 432, 448, 489, 540, 631], "grasshopp": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "displai": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "proper": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "ar": [8, 83, 95, 96, 110, 126, 127, 141, 149, 150, 156, 161, 162, 220, 270, 272, 307, 314, 365, 432, 489, 540, 591, 598, 628], "connect": [8, 19, 79, 80, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540, 591, 630], "panel": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "other": [8, 25, 26, 27, 53, 62, 82, 83, 95, 96, 110, 126, 127, 141, 149, 150, 156, 161, 162, 220, 270, 307, 314, 365, 432, 489, 540, 625, 630], "type": [8, 36, 37, 78, 82, 83, 84, 88, 89, 108, 110, 115, 119, 120, 139, 141, 142, 145, 146, 154, 156, 157, 158, 159, 166, 172, 173, 175, 179, 186, 188, 190, 197, 202, 206, 207, 212, 216, 217, 220, 235, 236, 268, 270, 281, 282, 312, 314, 325, 326, 363, 365, 385, 386, 430, 432, 445, 446, 487, 489, 500, 501, 538, 540, 550, 551, 588, 590, 594, 596, 598, 601, 602, 605], "output": [8, 83, 110, 141, 156, 220, 258, 270, 302, 314, 365, 420, 432, 489, 540], "shape": [9, 13, 40, 45, 51, 52, 58, 60, 63, 66, 68, 69, 70, 82, 109, 140, 155, 589, 600, 628], "return": [9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 139, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 157, 158, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 271, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 285, 287, 289, 290, 291, 292, 293, 294, 295, 296, 299, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 395, 396, 397, 398, 399, 400, 401, 402, 406, 407, 408, 409, 410, 411, 412, 413, 414, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 430, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 517, 518, 519, 520, 521, 522, 523, 524, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 567, 568, 569, 570, 571, 572, 573, 574, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588], "comput": [10, 11, 53, 59, 97, 129, 151, 163, 221, 222, 223, 224, 225, 226, 228, 234, 240, 241, 243, 244, 252, 255, 271, 272, 273, 274, 276, 277, 278, 280, 286, 287, 289, 296, 299, 315, 316, 317, 319, 320, 322, 323, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 346, 347, 348, 366, 367, 368, 369, 370, 371, 373, 380, 397, 398, 400, 401, 414, 417, 433, 434, 435, 436, 437, 439, 440, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 470, 471, 472, 490, 491, 492, 494, 495, 497, 498, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 521, 522, 523, 541, 542, 543, 544, 545, 547, 548, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 571, 572, 573], "axi": [10, 54, 55, 174, 175, 176, 221, 225, 248, 249, 271, 273, 292, 293, 315, 319, 342, 343, 366, 370, 408, 409, 433, 436, 466, 467, 488, 490, 493, 494, 517, 518, 541, 544, 567, 568, 589, 614, 628], "align": [10, 221, 225, 271, 273, 315, 319, 366, 370, 433, 436, 490, 494, 541, 544, 589, 614, 628], "bound": [10, 11, 221, 225, 226, 271, 273, 274, 315, 319, 320, 339, 366, 370, 371, 433, 436, 437, 463, 490, 494, 495, 514, 541, 544, 545, 564, 589, 614, 628], "box": [10, 11, 28, 221, 225, 226, 271, 273, 274, 315, 319, 320, 339, 366, 370, 371, 433, 436, 437, 463, 490, 494, 495, 514, 541, 544, 545, 564, 589, 590, 592, 594, 595, 596, 597, 614, 628], "compa": [10, 11, 12, 28, 31, 33, 36, 37, 38, 39, 41, 42, 43, 46, 48, 50, 54, 55, 59, 72, 73, 74, 75, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 97, 100, 101, 102, 106, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 125, 129, 130, 131, 134, 136, 137, 142, 145, 146, 147, 148, 151, 157, 158, 159, 160, 163, 169, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 212, 213, 214, 216, 217, 218, 225, 226, 235, 236, 237, 239, 241, 242, 247, 248, 249, 252, 259, 260, 261, 264, 265, 266, 271, 272, 273, 274, 277, 278, 281, 282, 283, 285, 287, 291, 292, 293, 296, 303, 304, 305, 307, 308, 309, 310, 313, 319, 320, 325, 326, 327, 329, 330, 332, 334, 338, 342, 343, 346, 349, 352, 353, 354, 357, 358, 360, 361, 362, 364, 370, 371, 385, 386, 388, 389, 393, 398, 399, 407, 408, 409, 414, 421, 422, 423, 426, 427, 428, 431, 436, 437, 441, 444, 445, 446, 447, 448, 449, 452, 456, 458, 462, 466, 467, 470, 473, 476, 477, 478, 481, 482, 484, 485, 486, 488, 494, 495, 500, 501, 502, 504, 505, 507, 509, 513, 517, 518, 521, 524, 527, 528, 529, 532, 533, 535, 536, 537, 544, 545, 550, 551, 552, 554, 555, 557, 559, 563, 567, 568, 571, 574, 577, 578, 579, 582, 583, 585, 586, 587, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 631], "orient": [11, 82, 95, 126, 149, 161, 226, 274, 320, 339, 371, 437, 463, 495, 514, 545, 564], "check": [12, 95, 96, 126, 127, 149, 150, 161, 162], "given": [12, 20, 79, 81, 222, 223, 224, 231, 242, 243, 272, 317, 367, 368, 369, 376, 399, 400, 435, 492, 543], "primit": 12, "paramet": [12, 13, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 104, 105, 108, 109, 111, 112, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 132, 133, 139, 140, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 269, 272, 276, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 289, 292, 293, 294, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 313, 315, 317, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 352, 353, 354, 355, 357, 358, 359, 360, 361, 362, 363, 364, 366, 367, 368, 369, 373, 374, 375, 376, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 395, 396, 397, 398, 399, 400, 401, 402, 408, 409, 410, 411, 412, 413, 414, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 430, 431, 433, 435, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 481, 482, 483, 484, 485, 486, 487, 488, 490, 492, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 613, 614, 628], "point": [12, 54, 55, 85, 86, 90, 91, 92, 122, 155, 160, 169, 171, 172, 173, 174, 176, 177, 195, 197, 199, 200, 202, 206, 207, 208, 209, 210, 211, 215, 219, 223, 224, 229, 230, 231, 242, 243, 244, 248, 249, 259, 261, 269, 272, 277, 278, 289, 292, 293, 303, 305, 317, 322, 323, 331, 332, 333, 337, 338, 340, 341, 342, 343, 354, 357, 358, 364, 368, 369, 374, 375, 376, 381, 384, 391, 392, 399, 400, 401, 408, 409, 421, 423, 431, 435, 439, 440, 444, 447, 451, 453, 455, 456, 457, 461, 462, 464, 465, 466, 467, 478, 481, 482, 488, 492, 497, 498, 506, 507, 508, 512, 513, 515, 516, 517, 518, 529, 532, 533, 543, 547, 548, 556, 557, 558, 562, 563, 565, 566, 567, 568, 579, 582, 583, 589, 590, 598, 601, 603, 604, 605, 606, 607, 608, 609, 611, 612, 613, 614, 615, 616, 618, 619, 620, 621, 623, 624, 625, 628, 631], "bool": [12, 48, 59, 60, 64, 65, 82, 95, 96, 97, 104, 105, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 149, 150, 151, 152, 153, 161, 162, 163, 164, 165, 219, 222, 223, 224, 229, 230, 231, 252, 256, 257, 269, 272, 277, 278, 296, 300, 301, 315, 317, 346, 350, 351, 364, 367, 368, 369, 374, 375, 376, 391, 414, 418, 419, 433, 435, 451, 470, 474, 475, 490, 492, 521, 525, 526, 539, 541, 543, 571, 575, 576], "true": [12, 39, 48, 59, 60, 64, 65, 82, 95, 96, 97, 104, 105, 117, 118, 121, 123, 124, 125, 126, 127, 129, 132, 133, 149, 150, 151, 152, 153, 161, 162, 163, 164, 165, 222, 223, 224, 229, 230, 231, 252, 256, 257, 272, 277, 278, 296, 300, 301, 317, 346, 350, 351, 367, 368, 369, 374, 375, 376, 414, 418, 419, 435, 470, 474, 475, 492, 521, 525, 526, 543, 571, 575, 576, 591, 599, 601, 602, 603, 604, 605, 606, 609, 610, 615, 620, 621, 622, 623, 625, 626, 627], "i": [12, 22, 36, 37, 52, 78, 82, 88, 89, 95, 96, 98, 99, 100, 102, 103, 106, 107, 108, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 139, 145, 146, 149, 150, 154, 158, 159, 161, 162, 166, 171, 182, 184, 210, 211, 215, 219, 222, 223, 224, 228, 229, 230, 231, 234, 235, 236, 241, 242, 244, 255, 259, 260, 268, 269, 272, 276, 277, 278, 280, 281, 282, 287, 289, 299, 303, 304, 307, 312, 317, 324, 325, 326, 352, 353, 354, 357, 358, 363, 364, 367, 368, 369, 373, 374, 375, 376, 380, 385, 386, 391, 396, 398, 399, 401, 417, 421, 422, 430, 435, 441, 442, 443, 445, 446, 451, 476, 477, 478, 481, 482, 487, 492, 499, 500, 501, 527, 528, 529, 532, 533, 538, 539, 543, 549, 550, 551, 577, 578, 579, 582, 583, 588, 598, 620, 623, 628, 630, 631], "fals": [12, 34, 59, 64, 65, 95, 96, 97, 104, 105, 111, 112, 126, 127, 129, 132, 133, 149, 150, 151, 152, 153, 161, 162, 163, 164, 165, 222, 223, 224, 229, 230, 231, 252, 256, 257, 272, 277, 278, 296, 300, 301, 315, 317, 346, 350, 351, 367, 368, 369, 374, 375, 376, 391, 414, 418, 419, 433, 435, 451, 470, 474, 475, 490, 492, 521, 525, 526, 541, 543, 571, 575, 576, 590, 591, 592, 593, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 611, 612, 615, 616, 625], "otherwis": [12, 95, 96, 126, 127, 149, 150, 161, 162, 630], "plane": [13, 42, 43, 61, 76, 77, 121, 134, 202, 203, 204, 205, 242, 329, 334, 399, 452, 458, 504, 509, 554, 559, 589, 599, 600, 628], "gener": [13, 53, 181, 219, 242, 269, 399, 441, 539], "line": [13, 82, 90, 106, 197, 198, 333, 387, 457, 508, 558, 589, 613, 614, 628], "slice": [13, 76, 77, 589, 600, 628], "seri": 13, "polylin": [13, 70, 148, 261, 305, 423, 603, 604, 606, 609, 610, 615, 620, 621, 622, 623, 626, 627], "A": [13, 22, 23, 25, 26, 27, 72, 73, 100, 102, 106, 117, 118, 121, 123, 124, 125, 176, 181, 182, 183, 184, 328, 349, 352, 353, 388, 448, 450, 473, 476, 477, 503, 524, 527, 528, 553, 574, 577, 578, 594, 630], "per": 13, "deep": 14, "nativ": [14, 64, 65, 104, 105, 132, 133, 152, 153, 164, 165, 256, 257, 300, 301, 350, 351, 418, 419, 448, 474, 475, 525, 526, 575, 576], "occ": [14, 40, 45, 82, 109, 140, 155, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 216, 217, 218, 238, 284, 313, 324, 328, 364, 390, 431, 442, 450, 488, 499, 503, 549, 553, 629], "mechan": 14, "remov": [15, 16, 17, 18], "all": [15, 16, 17, 18, 307, 630], "unus": [15, 16, 17, 18], "identifi": [19, 20, 21, 79, 80, 81], "an": [19, 21, 29, 36, 37, 40, 45, 64, 65, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 102, 104, 105, 108, 109, 111, 112, 115, 119, 120, 132, 133, 139, 140, 142, 145, 146, 152, 153, 154, 155, 157, 158, 159, 164, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 196, 197, 198, 199, 200, 201, 202, 203, 206, 207, 208, 211, 212, 213, 214, 216, 217, 218, 223, 227, 235, 236, 237, 238, 256, 257, 258, 268, 269, 275, 281, 282, 283, 284, 300, 301, 302, 312, 313, 321, 324, 325, 326, 327, 328, 350, 351, 363, 368, 372, 381, 383, 385, 386, 389, 390, 393, 418, 419, 420, 430, 438, 441, 442, 445, 446, 449, 450, 474, 475, 487, 496, 499, 500, 501, 502, 503, 525, 526, 538, 546, 549, 550, 551, 552, 553, 575, 576, 588, 593, 628, 630, 631], "parent": [20, 21, 591], "brepedg": [20, 82, 85, 86, 87, 90, 91, 93, 109, 140, 144], "breploop": [20, 109, 140], "radiu": [22, 23, 41, 179, 186, 212], "exclud": [22, 23, 591], "option": [22, 23, 41, 42, 48, 53, 54, 55, 56, 57, 59, 60, 64, 65, 66, 68, 69, 70, 84, 85, 86, 90, 97, 104, 105, 115, 117, 118, 121, 123, 124, 125, 129, 132, 133, 142, 151, 152, 153, 157, 163, 164, 165, 172, 173, 175, 179, 186, 188, 190, 197, 202, 206, 207, 212, 216, 217, 219, 221, 222, 223, 224, 229, 230, 231, 240, 243, 248, 249, 250, 251, 252, 256, 257, 259, 260, 261, 262, 269, 272, 277, 278, 286, 292, 293, 294, 295, 296, 300, 301, 303, 304, 305, 306, 315, 317, 339, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 352, 353, 354, 355, 357, 358, 364, 366, 367, 368, 369, 374, 375, 376, 381, 384, 391, 392, 395, 396, 397, 400, 408, 409, 410, 411, 412, 413, 414, 418, 419, 421, 422, 423, 424, 431, 433, 435, 443, 444, 447, 451, 453, 463, 465, 466, 467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479, 481, 482, 490, 492, 514, 516, 517, 518, 519, 520, 521, 522, 523, 525, 526, 527, 528, 529, 530, 532, 533, 539, 541, 543, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583], "from": [22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 39, 40, 42, 43, 44, 45, 46, 47, 48, 50, 59, 82, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 101, 109, 117, 118, 119, 120, 121, 122, 123, 124, 125, 129, 144, 145, 146, 147, 148, 151, 158, 159, 160, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 183, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 216, 217, 218, 235, 236, 237, 238, 239, 243, 252, 281, 282, 283, 284, 285, 296, 324, 325, 326, 327, 328, 329, 330, 346, 364, 381, 382, 383, 385, 386, 387, 388, 389, 390, 391, 392, 393, 400, 414, 431, 441, 442, 443, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 470, 499, 500, 501, 502, 503, 504, 505, 521, 549, 550, 551, 552, 553, 554, 555, 571, 589, 590, 591, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 611, 612, 613, 614, 615, 616, 623, 624, 625, 626, 627, 628, 629, 630, 631], "oper": [22, 23], "modifi": [22, 307, 395, 412, 630], "rais": [22, 36, 37, 88, 89, 98, 99, 100, 102, 103, 106, 107, 119, 120, 145, 146, 158, 159, 182, 184, 211, 215, 228, 234, 235, 236, 241, 244, 255, 260, 276, 280, 281, 282, 287, 289, 299, 304, 325, 326, 373, 380, 385, 386, 398, 401, 417, 422, 443, 445, 446, 500, 501, 550, 551], "brepfilleterror": 22, "If": [22, 36, 37, 59, 64, 65, 88, 89, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 117, 118, 119, 120, 121, 123, 124, 125, 129, 132, 133, 145, 146, 151, 152, 153, 158, 159, 163, 164, 165, 182, 184, 211, 215, 222, 223, 224, 228, 229, 230, 231, 234, 235, 236, 241, 244, 252, 255, 256, 257, 260, 272, 276, 277, 278, 280, 281, 282, 287, 289, 296, 299, 300, 301, 304, 317, 325, 326, 346, 350, 351, 367, 368, 369, 373, 374, 375, 376, 380, 385, 386, 398, 401, 414, 417, 418, 419, 422, 435, 443, 445, 446, 470, 474, 475, 492, 500, 501, 521, 525, 526, 543, 550, 551, 571, 575, 576], "could": 22, "complet": 22, "construct": [23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 44, 45, 46, 48, 49, 50, 77, 78, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 108, 117, 118, 119, 120, 121, 122, 123, 124, 125, 139, 144, 145, 146, 147, 148, 154, 158, 159, 160, 166, 167, 168, 169, 170, 171, 172, 173, 177, 178, 179, 180, 188, 191, 192, 195, 196, 199, 201, 206, 207, 209, 210, 216, 217, 235, 236, 238, 268, 281, 282, 284, 312, 324, 325, 326, 328, 329, 363, 381, 382, 383, 384, 385, 386, 387, 388, 390, 391, 392, 430, 431, 441, 442, 443, 444, 445, 446, 447, 448, 450, 451, 452, 453, 487, 499, 500, 501, 503, 504, 538, 549, 550, 551, 553, 554, 588, 593], "copi": [23, 55, 57, 73, 75, 77, 245, 247, 249, 251, 264, 266, 291, 293, 295, 308, 310, 343, 345, 360, 362, 402, 407, 409, 411, 413, 426, 428, 441, 467, 469, 484, 486, 518, 520, 535, 537, 568, 570, 585, 587, 630], "shell": [24, 29, 52, 181, 182, 184], "classmethod": [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 78, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 108, 117, 118, 119, 120, 121, 122, 123, 124, 125, 139, 144, 145, 146, 147, 148, 154, 158, 159, 160, 166, 235, 236, 237, 238, 239, 268, 281, 282, 283, 284, 285, 312, 324, 325, 326, 327, 328, 329, 330, 363, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 430, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 487, 499, 500, 501, 502, 503, 504, 505, 538, 549, 550, 551, 552, 553, 554, 555, 588], "b": [25, 26, 27, 53, 62, 91, 93, 178, 594], "boolean": [25, 26, 27, 589, 600, 628], "differ": [25, 631], "two": [25, 26, 27, 69, 91, 92, 93, 94, 95, 96, 126, 127, 149, 150, 161, 162, 170, 171, 192, 210, 222, 367, 443, 589, 600, 628], "intersect": [26, 61, 332, 333, 334, 456, 457, 458, 507, 508, 509, 557, 558, 559, 589, 614, 628], "union": 27, "form": 29, "open": [29, 628], "close": [29, 34, 41, 219, 260, 269, 304, 422], "one": [30, 167, 168, 169, 195, 209], "compound": 30, "out": [30, 630], "multipl": [30, 364, 391, 395, 396, 431, 451, 603, 604, 609], "individu": [30, 58, 591], "cone": [31, 117, 130, 185], "set": [32, 38, 44, 384], "nurbscurv": [32, 178, 364, 388, 393, 598, 601, 602, 603, 605, 606, 607, 608, 609, 610, 611, 612, 617, 618, 619, 628, 631], "cylind": [33, 118, 131, 186, 187, 592], "profil": [34, 49], "vector": [34, 54, 55, 74, 75, 172, 173, 174, 175, 176, 188, 189, 199, 202, 216, 217, 218, 228, 241, 242, 248, 249, 255, 265, 266, 276, 287, 292, 293, 299, 309, 310, 313, 322, 342, 343, 361, 362, 364, 373, 398, 399, 408, 409, 417, 427, 428, 439, 441, 466, 467, 485, 486, 488, 497, 517, 518, 536, 537, 547, 567, 568, 586, 587, 598, 617, 618, 623], "cap_end": 34, "extrud": [34, 41], "along": [34, 41, 49, 243, 400], "direct": [34, 48, 56, 57, 66, 188, 189, 242, 250, 251, 294, 295, 313, 318, 341, 344, 345, 347, 348, 352, 353, 354, 357, 358, 399, 410, 411, 431, 447, 451, 465, 468, 469, 471, 472, 476, 477, 478, 481, 482, 488, 516, 519, 520, 522, 523, 527, 528, 529, 532, 533, 539, 566, 569, 570, 572, 573, 577, 578, 579, 582, 583], "refer": [34, 49], "http": [34, 49, 628, 629], "dev": [34, 49, 628, 629], "opencascad": [34, 49, 628, 631], "org": [34, 49, 628], "doc": [34, 49, 628], "occt": [34, 49], "7": [34, 49, 431, 591, 592, 604, 618, 621], "4": [34, 49, 177, 211, 364, 431, 590, 592, 595, 596, 597, 603, 604, 609, 611, 612, 615, 617, 619, 621, 624, 625, 627, 628], "0": [34, 42, 49, 53, 59, 60, 69, 70, 71, 97, 129, 138, 151, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 186, 188, 189, 190, 191, 192, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 221, 240, 243, 252, 296, 315, 339, 346, 364, 366, 384, 395, 396, 397, 400, 412, 413, 414, 431, 433, 444, 463, 470, 490, 514, 521, 541, 564, 571, 590, 591, 592, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 631], "refman": [34, 49, 628], "html": [34, 49, 628], "class_b_rep_prim_a_p_i___make_pr": 34, "filenam": [35, 47], "conctruct": [35, 47], "data": [35, 36, 37, 47, 59, 64, 65, 78, 84, 88, 89, 97, 104, 105, 108, 115, 119, 120, 129, 132, 133, 139, 142, 145, 146, 151, 152, 153, 154, 155, 157, 158, 159, 163, 164, 165, 166, 181, 182, 184, 235, 236, 252, 256, 257, 268, 281, 282, 296, 300, 301, 312, 325, 326, 346, 350, 351, 363, 385, 386, 414, 418, 419, 430, 445, 446, 470, 474, 475, 487, 500, 501, 521, 525, 526, 538, 550, 551, 571, 575, 576, 588, 589, 614, 628], "ig": [35, 63], "file": [35, 36, 47, 63, 64, 68, 69, 88, 104, 119, 132, 145, 152, 158, 164, 235, 237, 239, 256, 258, 262, 281, 283, 285, 300, 302, 306, 325, 327, 330, 350, 355, 385, 389, 393, 418, 420, 424, 445, 449, 454, 474, 479, 500, 502, 505, 525, 530, 550, 552, 555, 575, 580, 591, 593, 630], "str": [35, 36, 37, 47, 59, 63, 64, 65, 68, 69, 88, 89, 97, 104, 105, 119, 120, 129, 132, 133, 145, 146, 151, 152, 153, 158, 159, 163, 164, 165, 219, 235, 236, 237, 239, 252, 256, 257, 258, 262, 269, 281, 282, 283, 285, 296, 300, 301, 302, 306, 325, 326, 327, 330, 346, 350, 351, 355, 364, 385, 386, 389, 393, 414, 418, 419, 420, 424, 431, 445, 446, 449, 454, 470, 474, 475, 479, 500, 501, 502, 505, 521, 525, 526, 530, 539, 550, 551, 552, 555, 571, 575, 576, 580], "filepath": [36, 63, 64, 68, 69, 88, 104, 119, 132, 145, 152, 158, 164, 235, 237, 239, 256, 258, 262, 281, 283, 285, 300, 302, 306, 325, 327, 330, 350, 355, 385, 389, 393, 418, 420, 424, 445, 449, 454, 474, 479, 500, 502, 505, 525, 530, 550, 552, 555, 575, 580, 591], "json": [36, 37, 64, 65, 88, 89, 104, 105, 119, 120, 132, 133, 145, 146, 152, 153, 158, 159, 164, 165, 235, 236, 256, 257, 281, 282, 300, 301, 325, 326, 350, 351, 385, 386, 418, 419, 445, 446, 474, 475, 500, 501, 525, 526, 550, 551, 575, 576, 589, 614, 628], "path": [36, 41, 49, 64, 88, 104, 119, 132, 145, 152, 158, 164, 235, 237, 239, 256, 258, 281, 283, 285, 300, 302, 325, 327, 330, 350, 385, 389, 393, 418, 420, 445, 449, 474, 500, 502, 505, 525, 550, 552, 555, 575, 591], "ha": [36, 37, 88, 89, 119, 120, 145, 146, 158, 159, 235, 236, 281, 282, 325, 326, 385, 386, 445, 446, 500, 501, 550, 551], "correct": [36, 37, 88, 89, 119, 120, 145, 146, 158, 159, 235, 236, 281, 282, 325, 326, 385, 386, 445, 446, 500, 501, 550, 551], "schema": [36, 37, 68, 78, 88, 89, 108, 119, 120, 139, 145, 146, 154, 158, 159, 166, 235, 236, 262, 268, 281, 282, 306, 312, 325, 326, 355, 363, 385, 386, 424, 430, 445, 446, 479, 487, 500, 501, 530, 538, 550, 551, 580, 588], "typeerror": [36, 37, 88, 89, 119, 120, 145, 146, 158, 159, 235, 236, 281, 282, 325, 326, 385, 386, 445, 446, 500, 501, 550, 551], "loft": 38, "mesh": [39, 53, 59, 66, 69, 70, 71, 97, 129, 151, 163, 181, 182, 184, 252, 296, 346, 352, 356, 414, 447, 470, 476, 480, 521, 527, 531, 571, 577, 581, 589, 600, 628], "solid": [39, 52, 591], "topods_shap": [40, 45], "thick": 41, "pipe": 41, "should": [41, 272, 313, 488, 598], "smaller": 41, "than": [41, 59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "domain_u": [42, 48, 121, 124, 539, 596, 599, 616, 625, 627], "1": [42, 59, 60, 70, 97, 129, 138, 151, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 183, 185, 186, 187, 188, 189, 190, 191, 192, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 243, 252, 296, 346, 364, 400, 414, 431, 470, 521, 571, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 604, 606, 608, 609, 610, 611, 612, 613, 614, 615, 616, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628], "domain_v": [42, 48, 121, 124, 539, 596, 599, 616, 625, 627], "tupl": [42, 48, 53, 70, 85, 86, 90, 121, 124, 174, 176, 219, 222, 223, 224, 229, 230, 231, 259, 269, 272, 277, 278, 303, 317, 352, 353, 354, 357, 358, 367, 368, 369, 374, 375, 376, 421, 435, 476, 477, 478, 481, 482, 492, 527, 528, 529, 532, 533, 539, 543, 577, 578, 579, 582, 583], "polygon": [44, 67, 122, 135, 147, 200, 260, 304, 422], "sphere": [46, 123, 136, 212, 213], "step": [47, 68, 591], "precis": [48, 124, 138, 221, 229, 230, 231, 240, 243, 286, 315, 339, 366, 374, 375, 376, 384, 395, 396, 397, 400, 412, 413, 433, 444, 463, 490, 514, 541, 564], "1e": [48, 124, 229, 230, 231, 374, 375, 376], "06": [48, 124, 229, 230, 231, 374, 375, 376], "insid": [48, 117, 118, 121, 123, 124, 125], "domain": [48, 219, 228, 234, 241, 244, 255, 259, 269, 276, 280, 287, 289, 299, 303, 341, 347, 348, 352, 353, 354, 357, 358, 373, 380, 398, 401, 417, 421, 465, 471, 472, 476, 477, 478, 481, 482, 516, 522, 523, 527, 528, 529, 532, 533, 539, 566, 572, 573, 577, 578, 579, 582, 583, 612], "u": [48, 66, 121, 124, 322, 323, 331, 335, 337, 338, 340, 341, 347, 352, 353, 354, 357, 358, 412, 413, 431, 439, 440, 447, 451, 455, 459, 461, 462, 464, 465, 471, 476, 477, 478, 481, 482, 497, 498, 506, 510, 512, 513, 515, 516, 522, 527, 528, 529, 532, 533, 539, 547, 548, 556, 560, 562, 563, 565, 566, 572, 577, 578, 579, 582, 583, 605, 612, 616, 620, 624, 625, 626, 627], "v": [48, 66, 121, 124, 313, 322, 323, 331, 336, 337, 338, 340, 341, 348, 352, 353, 354, 357, 358, 412, 413, 431, 439, 440, 447, 451, 455, 460, 461, 462, 464, 465, 472, 476, 477, 478, 481, 482, 497, 498, 506, 511, 512, 513, 515, 516, 523, 527, 528, 529, 532, 533, 539, 547, 548, 556, 561, 562, 563, 565, 566, 573, 577, 578, 579, 582, 583, 605, 612, 616, 620, 624, 625, 626, 627], "discretis": [48, 69, 70, 229, 230, 231, 259, 277, 278, 303, 358, 374, 375, 376, 421, 482, 533, 583], "trim": [48, 589, 600, 628], "whether": [48, 630], "keep": [48, 598], "outsid": 48, "sweep": 49, "class_b_rep_prim_a_p_i___make_sweep": 49, "class_b_rep_offset_a_p_i___make_pip": 49, "class_b_rep_offset_a_p_i___make_pipe_shel": 49, "toru": [50, 124, 125, 137, 214], "current": [52, 84, 115, 142, 157, 227, 275, 318, 321, 372, 438, 493, 496, 546, 631], "deflect": 53, "001": [53, 60, 69, 71, 138, 240, 384, 397, 412, 413, 444], "toler": [53, 395, 396, 592], "between": [53, 69, 70, 222, 224, 367, 369, 412, 413, 441, 443, 589, 600, 628], "anoth": [53, 62, 95, 96, 126, 127, 149, 150, 161, 162, 222, 224, 367, 369, 395, 396], "rep": [53, 62], "allow": [53, 69, 70, 631], "proxim": 53, "detect": 53, "calcul": [53, 229, 230, 231, 286, 374, 375, 376], "angl": [54, 55, 69, 248, 249, 292, 293, 342, 343, 408, 409, 466, 467, 517, 518, 567, 568], "radian": [54, 55, 248, 249, 292, 293, 342, 343, 408, 409, 466, 467, 517, 518, 567, 568, 595, 596, 597, 615, 623], "z": [54, 55, 56, 57, 59, 97, 129, 151, 163, 169, 171, 172, 173, 174, 175, 188, 195, 197, 199, 202, 206, 207, 209, 210, 216, 217, 248, 249, 250, 251, 252, 292, 293, 294, 295, 296, 342, 343, 344, 345, 346, 408, 409, 410, 411, 414, 466, 467, 468, 469, 470, 517, 518, 519, 520, 521, 567, 568, 569, 570, 571, 620, 626], "origin": [54, 55, 248, 249, 292, 293, 342, 343, 408, 409, 466, 467, 517, 518, 567, 568], "translat": [54, 55, 56, 57, 183, 248, 249, 250, 251, 264, 292, 293, 294, 295, 307, 308, 342, 343, 344, 345, 360, 408, 409, 410, 411, 426, 441, 466, 467, 468, 469, 484, 517, 518, 519, 520, 535, 567, 568, 569, 570, 585, 594, 615], "scale": [54, 55, 74, 75, 248, 249, 264, 265, 266, 292, 293, 308, 309, 310, 342, 343, 360, 361, 362, 408, 409, 426, 427, 428, 466, 467, 484, 485, 486, 517, 518, 535, 536, 537, 567, 568, 585, 586, 587, 623], "transform": [54, 55, 56, 57, 74, 75, 183, 248, 249, 250, 251, 265, 266, 292, 293, 294, 295, 309, 310, 342, 343, 344, 345, 361, 362, 408, 409, 410, 411, 427, 428, 466, 467, 468, 469, 485, 486, 517, 518, 519, 520, 536, 537, 567, 568, 569, 570, 586, 587, 595, 596, 597, 615, 623], "x": [56, 57, 169, 171, 172, 173, 174, 175, 188, 195, 197, 199, 202, 206, 207, 209, 210, 216, 217, 250, 251, 294, 295, 344, 345, 410, 411, 468, 469, 519, 520, 569, 570, 623], "y": [56, 57, 169, 171, 172, 173, 174, 175, 188, 195, 197, 199, 202, 206, 207, 209, 210, 216, 217, 250, 251, 294, 295, 344, 345, 410, 411, 468, 469, 519, 520, 569, 570], "factor": [56, 57, 250, 251, 294, 295, 344, 345, 410, 411, 468, 469, 519, 520, 569, 570], "rotat": [56, 57, 74, 75, 250, 251, 264, 265, 266, 294, 295, 307, 308, 309, 310, 344, 345, 360, 361, 362, 410, 411, 426, 427, 428, 468, 469, 484, 485, 486, 519, 520, 535, 536, 537, 569, 570, 585, 586, 587, 595, 596, 597, 615, 623], "togeth": 58, "part": 58, "as_str": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "hash": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "comparison": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571, 589, 613, 628], "dure": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "version": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571, 629], "control": [59, 97, 129, 151, 163, 252, 296, 346, 364, 381, 384, 391, 392, 414, 431, 447, 451, 453, 470, 521, 571, 589, 613, 614, 628], "algorithm": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "digest": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "hexadecim": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "format": [59, 68, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "rather": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "byte": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "exampl": [59, 97, 129, 151, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 183, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 252, 296, 313, 346, 364, 414, 431, 470, 488, 521, 571, 628, 629, 631], "datastructur": [59, 97, 129, 151, 163, 252, 296, 346, 352, 353, 414, 470, 476, 477, 521, 527, 528, 571, 577, 578, 593], "import": [59, 97, 129, 151, 163, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 183, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 216, 217, 218, 252, 296, 346, 364, 414, 431, 470, 521, 571, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 631], "from_obj": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571, 593], "get": [59, 97, 101, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571, 593, 629], "obj": [59, 97, 129, 151, 163, 237, 252, 258, 283, 296, 302, 327, 346, 389, 414, 420, 449, 470, 502, 521, 552, 571, 593], "v1": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "v2": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "vertex_attribut": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "vertex_sampl": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "v3": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "merge_edg": 60, "merge_fac": 60, "linear": 60, "angular": 60, "merg": [60, 630], "colinear": 60, "coplanar": 60, "same": [60, 95, 96, 126, 127, 149, 150, 161, 162, 629, 631], "underli": [60, 66, 67, 82, 98, 99, 100, 102, 103, 106, 107, 135, 138, 155, 200, 211, 628], "result": [61, 243, 381, 396, 400, 592, 596], "doe": 61, "splitter": [62, 596], "write": [63, 68, 69, 258, 262, 302, 306, 355, 420, 424, 479, 530, 580], "locat": [63, 68, 69, 95, 96, 126, 127, 149, 150, 161, 162, 199, 341, 465, 488, 516, 566], "pretti": [64, 65, 104, 105, 132, 133, 152, 153, 164, 165, 256, 257, 300, 301, 350, 351, 418, 419, 474, 475, 525, 526, 575, 576, 625], "save": [64, 65, 104, 105, 132, 133, 152, 153, 164, 165, 256, 257, 300, 301, 350, 351, 418, 419, 474, 475, 525, 526, 575, 576], "16": [66, 260, 304, 352, 353, 354, 357, 358, 422, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "int": [66, 168, 219, 229, 230, 259, 260, 261, 269, 277, 303, 304, 305, 341, 347, 348, 352, 353, 354, 357, 358, 364, 374, 375, 381, 391, 392, 421, 422, 423, 431, 447, 451, 453, 465, 471, 472, 476, 477, 478, 481, 482, 516, 522, 523, 527, 528, 529, 532, 533, 539, 566, 572, 573, 577, 578, 579, 582, 583], "number": [66, 167, 168, 170, 211, 215, 229, 230, 259, 260, 261, 277, 303, 304, 305, 347, 348, 352, 353, 354, 357, 358, 374, 375, 381, 421, 422, 423, 447, 471, 472, 476, 477, 478, 481, 482, 522, 523, 527, 528, 529, 532, 533, 572, 573, 577, 578, 579, 582, 583], "everi": [66, 242, 399], "simpl": 67, "without": [67, 135, 364, 391, 431, 451, 630, 631], "ap203": [68, 262, 306, 355, 424, 479, 530, 580], "unit": 68, "mm": 68, "linear_deflect": [69, 70, 71], "angular_deflect": [69, 70], "5": [69, 138, 190, 191, 196, 214, 431, 590, 591, 594, 595, 597, 598, 599, 603, 604, 611, 612, 615, 617, 618, 619, 620, 621, 624, 625, 627], "stl": 69, "deviat": [69, 70], "maximum": [69, 121, 124], "adjac": [69, 113], "facet": 69, "creat": [70, 629], "tessel": 70, "visualis": [70, 592, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629], "distanc": [70, 222, 224, 242, 243, 367, 369, 399, 400, 601], "curvatur": [70, 228, 276, 322, 331, 337, 373, 439, 455, 461, 497, 506, 512, 547, 556, 562], "view": 71, "matrix": [72, 73, 183], "valid": [78, 108, 128, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588, 591], "against": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "": [78, 101, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "raw": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "can": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588, 629], "__from_data__": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "ani": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588, 591, 630], "vertex": [79, 80, 81, 82, 93, 155, 160, 161, 162, 358, 482, 533, 583, 590, 591], "neighbour": 81, "occ_edg": 82, "repres": [82, 109, 140, 155, 176, 219, 269, 313, 364, 431, 488, 539], "topods_edg": 82, "occcurv": [82, 86, 313, 316, 332, 335, 336, 364, 390, 399, 402, 434, 456, 459, 460, 488, 491, 507, 510, 511, 542, 557, 560, 561], "adaptor": [82, 109], "first_vertex": 82, "brepvertex": [82, 85, 86, 90, 92, 93, 94, 109, 140, 155, 160], "first": [82, 91, 93, 631], "forward": 82, "is_lin": 82, "is_circl": 82, "circl": [82, 85, 100, 179, 180, 382, 589, 598, 599, 613, 617, 628], "is_ellips": 82, "ellips": [82, 87, 102, 190, 191, 383], "is_hyperbola": 82, "hyperbola": [82, 103, 196], "is_parabola": 82, "parabola": [82, 107, 201], "is_bezi": 82, "bezier": [82, 98, 177, 603, 604, 607], "is_bsplin": 82, "bspline": [82, 99, 178], "is_oth": 82, "last_vertex": 82, "revers": [82, 111, 112, 599], "topolog": [82, 155], "curvetyp": 82, "cl": [84, 115, 142, 157, 172, 173, 175, 179, 186, 188, 190, 197, 202, 206, 207, 212, 216, 217], "independ": [84, 115, 142, 157, 227, 275, 321, 372, 438, 496, 546], "param": [85, 86, 90, 605], "start": [85, 86, 90, 219, 223, 243, 269, 368, 400, 412, 413], "end": [85, 86, 90, 219, 223, 231, 269, 368, 376, 412, 413], "curve2d": 86, "occcurve2d": [86, 232, 378], "2d": [86, 206, 216, 269, 444, 598], "occsurfac": [86, 124, 232, 245, 313, 321, 324, 328, 329, 378, 402, 431, 442, 450, 452, 488, 496, 499, 503, 504], "second": [91, 93, 631], "equal": [95, 126, 149, 161, 229, 230, 277, 374, 375], "thei": [95, 96, 126, 127, 149, 150, 161, 162, 598], "have": [95, 96, 126, 127, 149, 150, 161, 162, 307, 313], "valueerror": [98, 99, 100, 102, 103, 106, 107, 182, 184, 211, 215, 228, 234, 241, 244, 255, 260, 276, 280, 287, 289, 299, 304, 373, 380, 398, 401, 417, 422, 443], "occ_fac": 109, "brepfac": [109, 113], "topod": [109, 140, 155], "topods_fac": [109, 200, 211, 215, 324, 442, 499, 549], "geomadaptor_surfac": 109, "add": [111, 112, 589, 590, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628], "inner": [111, 112], "addit": [111, 112, 222, 223, 224, 229, 230, 231, 272, 277, 278, 317, 367, 368, 369, 374, 375, 376, 435, 492, 543], "try": [116, 138, 143], "minimum": [121, 124, 222, 224, 367, 369], "verifi": 128, "continuity_u": 138, "continuity_v": 138, "maxdegree_u": 138, "maxdegree_v": 138, "maxsegments_u": 138, "maxsegments_v": 138, "nurb": [138, 178, 238, 284, 364, 381, 382, 383, 384, 387, 388, 390, 391, 392, 393, 431, 441, 443, 444, 447, 448, 451, 453, 454, 628, 631], "occ_wir": 140, "topods_wir": 140, "wire": 140, "collect": [144, 444, 607, 608, 616, 623, 627], "occ_vertex": 155, "topods_vertex": 155, "structur": [155, 181, 182, 184], "dimension": [167, 168, 169, 170, 171, 192, 195, 209, 210], "arrai": [167, 168, 169, 170, 171, 177, 192, 195, 209, 210], "tcolstd_array1ofr": 167, "array1_from_integers1": [167, 628], "array2_from_floats2": [167, 192, 628], "floats1": 167, "2": [167, 168, 169, 170, 171, 177, 183, 192, 195, 201, 209, 210, 269, 431, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 602, 603, 605, 611, 612, 613, 614, 615, 616, 617, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628], "array1": [167, 168, 169, 209], "core": [167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 179, 186, 188, 190, 192, 195, 196, 197, 199, 201, 202, 206, 207, 209, 210, 212, 216, 217, 629], "tcolstd": [167, 168, 170, 192], "integ": 168, "tcolstd_array1ofinteg": 168, "array1_from_floats1": [168, 170, 628], "integers1": 168, "tcolgp_array1ofpnt": [169, 177, 209], "harray1_from_points1": [169, 628], "points1_from_array1": [169, 628], "point_to_compa": [169, 206, 209, 210, 628], "points1": [169, 195, 209, 601, 611, 619], "tcolgp": [169, 171, 177, 195, 209, 210], "item": [169, 195], "gp_pnt": [169, 172, 173, 174, 175, 177, 179, 186, 190, 195, 196, 197, 201, 202, 207, 208, 209, 210, 212], "real": [170, 192], "tcolstd_array2ofr": [170, 192], "floats2": [170, 192], "array2": [170, 171, 192, 210], "tcolgp_array2ofpnt": [171, 210], "points2_from_array2": [171, 628], "point_to_occ": [171, 195, 628], "itertool": [171, 192, 210, 605, 616, 620, 623, 627], "product": [171, 192, 210, 242, 399], "points2": [171, 210, 611, 619], "row": [171, 615, 620, 621, 622, 623, 626, 627], "rang": [171, 210, 623, 626], "lowerrow": 171, "upperrow": 171, "col": [171, 615, 620, 621, 622, 623, 626, 627], "lowercol": 171, "uppercol": 171, "j": [171, 210, 620], "valu": [171, 241, 287, 398], "posit": [172, 173, 242, 399, 590, 591, 592, 593, 594, 595, 596, 597, 617, 618], "gp_ax2": [172, 177, 179, 190, 193, 196, 201, 204], "ax3_to_compa": [172, 628], "gp": [172, 173, 174, 175, 177, 179, 186, 188, 190, 196, 197, 201, 202, 206, 207, 209, 210, 212, 216, 217], "gp_dir": [172, 173, 174, 175, 177, 179, 186, 188, 189, 190, 196, 197, 201, 202, 212], "ax2": [172, 179, 190, 196, 201], "xaxi": [172, 173, 199], "yaxi": [172, 173, 199, 623], "gp_ax3": [173, 186, 194, 205, 212], "ax2_to_compa": [173, 628], "ax3": [173, 186, 212], "gp_ax1": [174, 175, 176], "axis_to_compas_vector": [174, 188, 216, 217, 628], "direction_to_compa": [175, 216, 217, 628], "vector_to_compa": [175, 188, 216, 628], "vector2d_to_compa": [175, 188, 217, 628], "line_to_occ": [176, 197, 628], "geom_beziercurv": 177, "gp_parab": [177, 201], "geom": 177, "setvalu": [177, 192, 209, 210], "3": [177, 183, 192, 209, 210, 215, 364, 392, 431, 453, 594, 596, 598, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 631], "spline": 178, "geom_bsplinecurv": [178, 628], "circ": 179, "gp_circ": [179, 180], "ellipse_to_compa": [179, 628], "cicrl": 180, "ellipse_to_occ": [180, 628], "topods_shel": [181, 182, 184], "compas_trimesh_to_occ_shel": [181, 182, 628], "compas_quadmesh_to_occ_shel": [181, 184, 628], "quad": [182, 211, 354, 478, 529, 579], "input": 182, "compas_mesh_to_occ_shel": [182, 184, 628], "gp_trsf": 183, "from_vector": [183, 615], "triangl": [184, 215, 356, 357, 480, 481, 531, 532, 581, 582], "gp_cone": 185, "sphere_to_occ": [185, 187, 214, 628], "cylinder_to_occ": [185, 213, 214, 628], "torus_to_occ": [185, 187, 213, 628], "gp_cylind": [186, 187], "compas_sphere_from_occ_spher": 186, "height": 186, "cone_to_occ": [187, 213, 214, 628], "vector_to_occ": [189, 628], "elip": 190, "construc": 190, "gp_elip": [190, 191], "circle_to_compa": [190, 628], "major": [190, 196], "minor": [190, 196], "circle_to_occ": [191, 628], "right": [193, 194, 204, 205, 630], "hand": [193, 194, 204, 205], "frame_to_occ_ax3": [193, 628], "worldxi": [193, 194, 592, 595, 596, 597, 599], "frame_to_occ_ax2": [194, 628], "horizont": 195, "tcolgp_harray1ofpnt": 195, "array1_from_points1": [195, 209, 628], "harray1": 195, "hypr": 196, "gp_hypr": 196, "lin": 197, "gp_lin": [197, 198], "axis_to_occ": [198, 628], "toploc_loc": 199, "toploc": 199, "ngon": 200, "best": [200, 631], "fit": [200, 444, 630], "sequenc": 200, "defin": [200, 211, 215, 242, 399, 628], "triangle_to_fac": [200, 211, 628], "quad_to_fac": [200, 215, 628], "parab": 201, "focal": 201, "pln": 202, "gp_pln": [202, 203], "plane_to_occ": [202, 204, 205, 628], "normal": [202, 241, 242, 287, 338, 398, 399, 462, 513, 563], "plane_to_occ_ax2": [203, 205, 628], "plane_to_occ_ax3": [203, 204, 628], "gp_pnt2d": 206, "point2d_to_compa": [207, 628], "array2_from_points2": [210, 628], "len": 210, "rule": 211, "four": [211, 443], "ngon_to_fac": [211, 215, 628], "gp_sphere": [212, 213], "cylinder_to_compa": [212, 628], "gp_toru": 214, "three": [215, 443], "gp_vec2d": 216, "gp_vec": [217, 218], "direction_to_occ": [218, 628], "name": [219, 269, 364, 431, 539], "dimens": [219, 269], "space": [219, 232, 269, 313, 341, 347, 348, 378, 465, 471, 472, 516, 522, 523, 566, 572, 573, 589, 614, 628], "is_clos": [219, 269], "flag": [219, 269, 364, 391, 451, 539], "indic": [219, 269, 358, 364, 391, 451, 482, 533, 539, 583], "is_period": [219, 269, 391], "period": [219, 269, 391, 451, 539], "return_dist": [222, 224, 367, 369, 601], "where": [222, 224, 367, 369], "closest": [222, 223, 224, 272, 317, 367, 368, 369, 435, 492, 543, 589, 613, 628], "occnurbscurv": [222, 224, 443, 604, 631], "find": [222, 224, 367, 369, 589, 600, 628], "lowest": [222, 367], "return_paramet": [223, 272, 317, 368, 435, 492, 543, 602], "orthogon": [223, 368], "project": [223, 317, 368, 435, 492, 543, 598], "possibl": [223, 368], "whichev": [223, 368], "closer": [223, 368], "nearest": [223, 317, 368, 435, 492, 543], "correspond": [223, 229, 230, 231, 241, 242, 272, 277, 278, 287, 313, 341, 368, 374, 375, 376, 398, 399, 465, 488, 516, 566], "t": [228, 234, 241, 243, 244, 255, 263, 276, 280, 287, 289, 299, 307, 359, 373, 380, 398, 400, 401, 417, 425, 483, 534, 584, 602, 615], "count": [229, 230, 277, 374, 375], "return_point": [229, 230, 231, 277, 278, 374, 375, 376, 605], "specif": [229, 230, 277, 374, 375], "length": [229, 230, 231, 277, 278, 374, 375, 376, 591, 605], "segment": [229, 230, 231, 277, 278, 374, 375, 376, 589, 605, 613, 628], "divis": [229, 230, 231, 277, 278, 374, 375, 376], "those": [229, 230, 231, 277, 278, 374, 375, 376], "divid": [230, 231, 277, 278, 375, 376, 589, 613, 628], "note": [231, 242, 307, 313, 376, 399, 441], "last": [231, 376], "might": [231, 376], "coincid": [231, 376], "new": [232, 242, 243, 378, 396, 399, 400], "tol": [233, 279, 286, 379, 592], "load": [237, 239, 283, 285, 327, 330, 389, 393, 449, 454, 502, 505, 552, 555, 591], "occ_curv": [238, 284, 390], "bsplinecurv": [238, 284, 364, 390], "geom_curv": [238, 390, 628], "stp": [239, 262, 285, 306, 330, 355, 393, 424, 454, 479, 505, 530, 555, 580, 591], "point_at": [241, 287, 398, 627], "tangent_at": [241, 287, 398], "binormal_at": [241, 287, 398], "frame_at": [241, 287, 398, 616], "curvature_at": [241, 287, 398], "over": [242, 341, 347, 348, 399, 465, 471, 472, 516, 522, 523, 566, 572, 573, 589, 614, 628], "specifi": [242, 278, 399], "At": [242, 399], "ditanc": [242, 399], "cross": [242, 399], "tangent": [242, 255, 299, 399, 417], "requir": [243, 286, 400], "onto": [245, 402], "parametris": [246, 290, 406], "n": [259, 260, 261, 303, 304, 305, 347, 348, 421, 422, 423, 471, 472, 522, 523, 572, 573, 605, 629], "10": [259, 303, 341, 347, 348, 364, 421, 447, 465, 471, 472, 516, 522, 523, 566, 572, 573, 591, 601, 605, 607, 609, 610, 612, 617, 618, 619, 624, 626, 631], "subset": [259, 303, 352, 353, 354, 357, 358, 421, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "which": [259, 303, 352, 353, 354, 357, 358, 421, 441, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583, 628], "case": [259, 303, 352, 353, 354, 357, 358, 421, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "entir": [259, 303, 352, 353, 354, 357, 358, 421, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "side": [260, 304, 422], "100": [261, 305, 423, 620, 626], "ussual": 269, "through": [269, 631], "embed": [269, 324, 442, 499, 549, 598], "alwai": 269, "test": 272, "divide_by_length": 277, "split": [277, 278, 589, 600, 628], "divide_by_count": 278, "geom2d_curv": 284, "limit": [307, 630], "effect": 307, "see": 307, "more": 307, "info": 307, "extrus": [313, 318, 441, 589, 614, 628], "kernel": [313, 364, 431, 488, 628], "infinit": 313, "planar": [313, 488], "optim": [315, 433, 490, 541], "uv": [317, 435, 492, 543, 589, 614, 628], "wich": [324, 442, 499, 549], "occ_surfac": [328, 450, 503, 553], "nubr": [328, 450, 503, 553], "bsplinesurfac": [328, 431, 450, 503, 553], "geom_bsplinesurfac": [328, 450, 503, 553, 628], "gaussian": [331, 455, 506, 556], "isoparametr": [335, 336, 459, 460, 510, 511, 560, 561], "mean": [337, 461, 512, 562], "nu": [341, 352, 353, 354, 357, 358, 447, 465, 476, 477, 478, 481, 482, 516, 527, 528, 529, 532, 533, 566, 577, 578, 579, 582, 583, 620, 626], "nv": [341, 352, 353, 354, 357, 358, 447, 465, 476, 477, 478, 481, 482, 516, 527, 528, 529, 532, 533, 566, 577, 578, 579, 582, 583, 620, 626], "evenli": [341, 347, 348, 465, 471, 472, 516, 522, 523, 566, 572, 573], "size": [341, 465, 516, 566, 616], "grid": [341, 447, 465, 516, 566], "du": [352, 353, 354, 357, 358, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "dv": [352, 353, 354, 357, 358, 476, 477, 478, 481, 482, 527, 528, 529, 532, 533, 577, 578, 579, 582, 583], "polyhedron": [353, 477, 528, 578], "6": [364, 431, 592, 593, 601, 602, 604, 605, 607, 609, 610, 612, 618, 619, 620, 621, 631], "from_point": [364, 431, 598, 601, 605, 610, 612, 615, 616, 618, 620, 622, 623, 624, 625, 627, 631], "from_paramet": [364, 431, 603, 604, 609, 621], "weight": [364, 391, 431, 451, 603, 604, 609, 621, 625], "knot": [364, 391, 431, 451, 603, 604, 609], "degre": [364, 381, 391, 392, 451, 539, 603, 604, 609], "continu": [364, 395, 396, 539], "is_rat": 364, "ration": 364, "knotsequ": 364, "full": 364, "order": 364, "arc": 381, "pointcount": 381, "interpol": [384, 444, 589, 613, 628], "explicit": [391, 451], "0001": [395, 396], "nurbssurfac": [431, 447, 448, 598, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628], "knots_u": [431, 451, 621], "9": [431, 605, 618, 620, 621], "8": [431, 602, 604, 619, 620, 621], "knots_v": [431, 451, 621], "mults_u": [431, 451, 621], "mults_v": [431, 451, 621], "degree_u": [431, 451, 453, 539, 621], "degree_v": [431, 451, 453, 539, 621], "basi": 441, "infil": [441, 443], "from_fil": [441, 619], "serv": 441, "curve1": [443, 601, 603, 604, 611], "curve2": [443, 603, 604, 611], "curve3": [443, 603, 604], "curve4": [443, 604], "style": [443, 619], "stretch": 443, "contigu": 443, "liter": 443, "coon": 443, "produc": 443, "flattest": 443, "patch": 443, "round": 443, "fill": [443, 589, 614, 628], "support": 443, "approxim": 444, "cad": 448, "is_periodic_u": [451, 539], "is_periodic_v": [451, 539], "u_derge": 451, "revolut": [488, 493], "join": [589, 613, 628], "meshgrid": [589, 614, 616, 627, 628], "With": [589, 600, 614, 628], "isocurv": [589, 614, 628], "random": [589, 614, 628], "explor": [589, 600, 628], "topologi": [589, 600, 628], "fillet": [589, 600, 628], "overlap": [589, 600, 628], "hole": [589, 600, 628], "color": [590, 594, 596, 601, 602, 603, 604, 606, 609, 610, 611, 612], "compas_view": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629], "viewer": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629], "to_brep": [590, 592, 594, 595, 596, 597], "vertex_neighbor": 590, "vertex_edg": [590, 591], "vertex_fac": 590, "visual": [590, 591, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605], "render": [590, 591, 592, 593, 594, 595, 596, 597, 617, 618], "camera": [590, 591, 592, 593, 594, 595, 596, 597, 617, 618], "target": [590, 591, 592, 593, 594, 595, 596, 597, 617, 618], "scene": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627], "pointcolor": [590, 601, 602, 603, 604, 606, 608, 609, 610, 615, 620, 621, 622, 623, 626, 627], "red": [590, 594, 596, 603, 604, 606, 609, 610, 611, 612], "pointsiz": [590, 603, 604, 606, 608, 609, 610, 615, 616, 620, 621, 622, 623, 626, 627], "20": [590, 603, 604, 606, 608, 609, 610, 615, 620, 621, 622, 623, 626, 627], "ignor": [590, 594, 596, 598, 601, 602, 605], "to_lin": 590, "lineswidth": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 606, 607, 608, 609, 610, 611, 612, 615, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627], "linecolor": [590, 594, 596, 603, 604, 606, 609, 610, 611, 612, 615, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627], "from_brepfac": [590, 594, 598, 599], "opac": [590, 591, 594, 595, 596, 597], "show_fac": [590, 597, 615], "show_point": [590, 591, 592, 593, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 620, 621, 622, 623, 626, 627], "show": [590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627], "pathlib": 591, "extract": 591, "letter": 591, "__file__": 591, "fca": 591, "from_step": 591, "sure": 591, "heal": 591, "make_solid": 591, "For": [591, 631], "each": 591, "too": 591, "short": 591, "rest": 591, "do_fillet": 591, "e": [591, 629], "01": 591, "break": 591, "append": [591, 620, 623, 624], "lineardeflect": 592, "r": [592, 595, 596, 597, 615], "yz": 592, "worldyz": 592, "zx": 592, "worldzx": 592, "xy": 592, "cx": 592, "cy": 592, "cz": 592, "tubemesh": 593, "from_mesh": 593, "from_box": 594, "fa": 594, "fb": 594, "surfacecolor": [594, 596], "lighten": [594, 596], "50": [594, 596, 620], "blue": [594, 596, 604, 611], "math": [595, 596, 597, 615, 623], "from_axis_and_angl": [595, 596, 597, 615, 623], "30": [595, 596, 597, 623], "is_point_infrontof_plan": 596, "from_plan": [596, 599], "centroid": 596, "els": [596, 620], "includ": [598, 630], "api": [598, 628], "still": 598, "3d": [598, 628], "track": 598, "from_circl": [598, 599, 606, 617], "from_curv": 598, "from_edg": [598, 599], "perhap": 598, "set_surfac": 598, "add_boundari": 598, "add_hol": 598, "from_surfac": 598, "add_loop": [598, 599], "circle1": 599, "circle2": 599, "circle3": 599, "loop1": 599, "loop2": 599, "loop3": 599, "points0": 601, "curve0": 601, "12": 601, "closest_parameters_curv": 601, "closest_points_curv": 601, "to_polylin": [601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 617, 618, 619, 624, 625], "from_interpol": [602, 607, 611, 619], "closest_point": 602, "curve5": 604, "curve6": 604, "pairwis": 605, "to_point": 607, "from_lin": 608, "green": [611, 612], "pointsa": 612, "curvea": 612, "pointsb": 612, "curveb": 612, "45": 615, "aabb": 615, "zip": [615, 616, 620, 621, 622, 623, 626, 627], "show_lin": [615, 616], "flatten": [616, 623, 627], "linspac": [616, 620, 627], "ij": [616, 627], "25": 616, "from_extrus": [617, 618], "nurbscurve1": 619, "nurbscurve2": 619, "nurbssurface_2curv": 619, "points3": 619, "points4": 619, "points5": 619, "points6": 619, "nurbscurve3": 619, "nurbscurve4": 619, "nurbscurve5": 619, "nurbscurve6": 619, "nurbssurface_4curv": 619, "uu": 620, "vv": 620, "enumer": 620, "elif": 620, "to_mesh": [620, 621, 626], "centroid_points_xi": 623, "ry": 623, "rz": 623, "zaxi": 623, "360": 623, "intersections_with_lin": 623, "rendermod": 623, "ghost": 623, "u_curv": 624, "space_u": 624, "isocurve_u": [624, 625], "v_curv": 624, "space_v": 624, "isocurve_v": [624, 625], "to_jsonstr": 625, "from_jsonstr": 625, "sum": 625, "is_u_period": 625, "is_v_period": 625, "u_degre": 625, "u_knot": 625, "u_mult": 625, "v_degre": 625, "v_knot": 625, "v_mult": 625, "from_meshgrid": 626, "updat": 626, "choic": 626, "spacepoint": 627, "provid": [628, 630, 631], "easi": 628, "interfac": 628, "python": 628, "bind": 628, "model": 628, "cascad": 628, "wrapper": 628, "around": 628, "geom_surfac": 628, "repsect": 628, "work": 628, "rhinocommon": [628, 631], "packag": [628, 631], "introduct": 628, "instal": 628, "occbrep": 628, "axis_to_compa": 628, "bezier_to_compa": 628, "bspline_to_compa": 628, "compas_transformation_to_trsf": 628, "floats2_from_array2": 628, "hyperbola_to_compa": 628, "line_to_compa": 628, "location_to_compa": 628, "parabola_to_compa": 628, "plane_to_compa": 628, "sphere_to_compa": 628, "licens": 628, "acknowledg": 628, "index": 628, "modul": 628, "class_geom___curv": 628, "class_geom___b_spline_curv": 628, "class_geom___surfac": 628, "class_geom___b_spline_surfac": 628, "releas": 629, "via": 629, "conda": 629, "forg": 629, "c": [629, 630], "sever": 629, "To": 629, "environ": [629, 631], "activ": 629, "pip": 629, "latest": 629, "you": 629, "sourc": 629, "directli": [629, 631], "github": 629, "repo": 629, "pythonocc": 629, "git": 629, "clone": 629, "com": 629, "cd": 629, "mit": 630, "copyright": 630, "eth": 630, "zurich": 630, "block": 630, "research": 630, "group": 630, "permiss": 630, "herebi": 630, "grant": 630, "free": 630, "charg": 630, "person": 630, "obtain": 630, "softwar": 630, "associ": 630, "document": 630, "deal": 630, "restrict": 630, "publish": 630, "distribut": 630, "sublicens": 630, "sell": 630, "permit": 630, "whom": 630, "furnish": 630, "do": 630, "so": 630, "subject": 630, "follow": [630, 631], "condit": 630, "abov": 630, "notic": 630, "shall": 630, "substanti": 630, "portion": 630, "THE": 630, "AS": 630, "warranti": 630, "OF": 630, "kind": 630, "express": 630, "OR": 630, "impli": 630, "BUT": 630, "NOT": 630, "TO": 630, "merchant": 630, "FOR": 630, "particular": 630, "purpos": 630, "AND": 630, "noninfring": 630, "IN": 630, "NO": 630, "event": 630, "author": 630, "holder": 630, "BE": 630, "liabl": 630, "claim": 630, "damag": 630, "liabil": 630, "action": 630, "contract": 630, "tort": 630, "aris": 630, "WITH": 630, "give": 631, "brief": 631, "overview": 631, "function": 631, "recommend": 631, "practic": 631, "backend": 631, "although": 631, "ca": 631, "standalon": 631, "wai": 631, "snippet": 631, "accomplish": 631, "thing": 631, "advatag": 631, "automat": 631, "switch": 631, "depend": 631, "chage": 631, "script": 631, "throw": 631, "error": 631, "wherea": 631, "expect": 631}, "objects": {"compas_occ.brep": [[7, 0, 1, "", "OCCBrep"], [82, 0, 1, "", "OCCBrepEdge"], [109, 0, 1, "", "OCCBrepFace"], [140, 0, 1, "", "OCCBrepLoop"], [155, 0, 1, "", "OCCBrepVertex"]], "compas_occ.brep.OCCBrep": [[8, 1, 1, "", "ToString"], [9, 1, 1, "", "check"], [10, 1, 1, "", "compute_aabb"], [11, 1, 1, "", "compute_obb"], [12, 1, 1, "", "contains"], [13, 1, 1, "", "contours"], [14, 1, 1, "", "copy"], [15, 1, 1, "", "cull_unused_edges"], [16, 1, 1, "", "cull_unused_faces"], [17, 1, 1, "", "cull_unused_loops"], [18, 1, 1, "", "cull_unused_vertices"], [19, 1, 1, "", "edge_faces"], [20, 1, 1, "", "edge_loop"], [21, 1, 1, "", "edge_loops"], [22, 1, 1, "", "fillet"], [23, 1, 1, "", "filleted"], [24, 1, 1, "", "fix"], [25, 1, 1, "", "from_boolean_difference"], [26, 1, 1, "", "from_boolean_intersection"], [27, 1, 1, "", "from_boolean_union"], [28, 1, 1, "", "from_box"], [29, 1, 1, "", "from_brepfaces"], [30, 1, 1, "", "from_breps"], [31, 1, 1, "", "from_cone"], [32, 1, 1, "", "from_curves"], [33, 1, 1, "", "from_cylinder"], [34, 1, 1, "", "from_extrusion"], [35, 1, 1, "", "from_iges"], [36, 1, 1, "", "from_json"], [37, 1, 1, "", "from_jsonstring"], [38, 1, 1, "", "from_loft"], [39, 1, 1, "", "from_mesh"], [40, 1, 1, "", "from_native"], [41, 1, 1, "", "from_pipe"], [42, 1, 1, "", "from_plane"], [43, 1, 1, "", "from_planes"], [44, 1, 1, "", "from_polygons"], [45, 1, 1, "", "from_shape"], [46, 1, 1, "", "from_sphere"], [47, 1, 1, "", "from_step"], [48, 1, 1, "", "from_surface"], [49, 1, 1, "", "from_sweep"], [50, 1, 1, "", "from_torus"], [51, 1, 1, "", "heal"], [52, 1, 1, "", "make_solid"], [53, 1, 1, "", "overlap"], [54, 1, 1, "", "rotate"], [55, 1, 1, "", "rotated"], [56, 1, 1, "", "scale"], [57, 1, 1, "", "scaled"], [58, 1, 1, "", "sew"], [59, 1, 1, "", "sha256"], [60, 1, 1, "", "simplify"], [61, 1, 1, "", "slice"], [62, 1, 1, "", "split"], [63, 1, 1, "", "to_iges"], [64, 1, 1, "", "to_json"], [65, 1, 1, "", "to_jsonstring"], [66, 1, 1, "", "to_meshes"], [67, 1, 1, "", "to_polygons"], [68, 1, 1, "", "to_step"], [69, 1, 1, "", "to_stl"], [70, 1, 1, "", "to_tesselation"], [71, 1, 1, "", "to_viewmesh"], [72, 1, 1, "", "transform"], [73, 1, 1, "", "transformed"], [74, 1, 1, "", "translate"], [75, 1, 1, "", "translated"], [76, 1, 1, "", "trim"], [77, 1, 1, "", "trimmed"], [78, 1, 1, "", "validate_data"], [79, 1, 1, "", "vertex_edges"], [80, 1, 1, "", "vertex_faces"], [81, 1, 1, "", "vertex_neighbors"]], "compas_occ.brep.OCCBrepEdge": [[83, 1, 1, "", "ToString"], [84, 1, 1, "", "copy"], [85, 1, 1, "", "from_circle"], [86, 1, 1, "", "from_curve"], [87, 1, 1, "", "from_ellipse"], [88, 1, 1, "", "from_json"], [89, 1, 1, "", "from_jsonstring"], [90, 1, 1, "", "from_line"], [91, 1, 1, "", "from_point_point"], [92, 1, 1, "", "from_points"], [93, 1, 1, "", "from_vertex_vertex"], [94, 1, 1, "", "from_vertices"], [95, 1, 1, "", "is_equal"], [96, 1, 1, "", "is_same"], [97, 1, 1, "", "sha256"], [98, 1, 1, "", "to_bezier"], [99, 1, 1, "", "to_bspline"], [100, 1, 1, "", "to_circle"], [101, 1, 1, "", "to_curve"], [102, 1, 1, "", "to_ellipse"], [103, 1, 1, "", "to_hyperbola"], [104, 1, 1, "", "to_json"], [105, 1, 1, "", "to_jsonstring"], [106, 1, 1, "", "to_line"], [107, 1, 1, "", "to_parabola"], [108, 1, 1, "", "validate_data"]], "compas_occ.brep.OCCBrepFace": [[110, 1, 1, "", "ToString"], [111, 1, 1, "", "add_loop"], [112, 1, 1, "", "add_loops"], [113, 1, 1, "", "adjacent_faces"], [114, 1, 1, "", "as_brep"], [115, 1, 1, "", "copy"], [116, 1, 1, "", "fix"], [117, 1, 1, "", "from_cone"], [118, 1, 1, "", "from_cylinder"], [119, 1, 1, "", "from_json"], [120, 1, 1, "", "from_jsonstring"], [121, 1, 1, "", "from_plane"], [122, 1, 1, "", "from_polygon"], [123, 1, 1, "", "from_sphere"], [124, 1, 1, "", "from_surface"], [125, 1, 1, "", "from_torus"], [126, 1, 1, "", "is_equal"], [127, 1, 1, "", "is_same"], [128, 1, 1, "", "is_valid"], [129, 1, 1, "", "sha256"], [130, 1, 1, "", "to_cone"], [131, 1, 1, "", "to_cylinder"], [132, 1, 1, "", "to_json"], [133, 1, 1, "", "to_jsonstring"], [134, 1, 1, "", "to_plane"], [135, 1, 1, "", "to_polygon"], [136, 1, 1, "", "to_sphere"], [137, 1, 1, "", "to_torus"], [138, 1, 1, "", "try_get_nurbssurface"], [139, 1, 1, "", "validate_data"]], "compas_occ.brep.OCCBrepLoop": [[141, 1, 1, "", "ToString"], [142, 1, 1, "", "copy"], [143, 1, 1, "", "fix"], [144, 1, 1, "", "from_edges"], [145, 1, 1, "", "from_json"], [146, 1, 1, "", "from_jsonstring"], [147, 1, 1, "", "from_polygon"], [148, 1, 1, "", "from_polyline"], [149, 1, 1, "", "is_equal"], [150, 1, 1, "", "is_same"], [151, 1, 1, "", "sha256"], [152, 1, 1, "", "to_json"], [153, 1, 1, "", "to_jsonstring"], [154, 1, 1, "", "validate_data"]], "compas_occ.brep.OCCBrepVertex": [[156, 1, 1, "", "ToString"], [157, 1, 1, "", "copy"], [158, 1, 1, "", "from_json"], [159, 1, 1, "", "from_jsonstring"], [160, 1, 1, "", "from_point"], [161, 1, 1, "", "is_equal"], [162, 1, 1, "", "is_same"], [163, 1, 1, "", "sha256"], [164, 1, 1, "", "to_json"], [165, 1, 1, "", "to_jsonstring"], [166, 1, 1, "", "validate_data"]], "compas_occ.conversions": [[167, 2, 1, "", "array1_from_floats1"], [168, 2, 1, "", "array1_from_integers1"], [169, 2, 1, "", "array1_from_points1"], [170, 2, 1, "", "array2_from_floats2"], [171, 2, 1, "", "array2_from_points2"], [172, 2, 1, "", "ax2_to_compas"], [173, 2, 1, "", "ax3_to_compas"], [174, 2, 1, "", "axis_to_compas"], [175, 2, 1, "", "axis_to_compas_vector"], [176, 2, 1, "", "axis_to_occ"], [177, 2, 1, "", "bezier_to_compas"], [178, 2, 1, "", "bspline_to_compas"], [179, 2, 1, "", "circle_to_compas"], [180, 2, 1, "", "circle_to_occ"], [181, 2, 1, "", "compas_mesh_to_occ_shell"], [182, 2, 1, "", "compas_quadmesh_to_occ_shell"], [183, 2, 1, "", "compas_transformation_to_trsf"], [184, 2, 1, "", "compas_trimesh_to_occ_shell"], [185, 2, 1, "", "cone_to_occ"], [186, 2, 1, "", "cylinder_to_compas"], [187, 2, 1, "", "cylinder_to_occ"], [188, 2, 1, "", "direction_to_compas"], [189, 2, 1, "", "direction_to_occ"], [190, 2, 1, "", "ellipse_to_compas"], [191, 2, 1, "", "ellipse_to_occ"], [192, 2, 1, "", "floats2_from_array2"], [193, 2, 1, "", "frame_to_occ_ax2"], [194, 2, 1, "", "frame_to_occ_ax3"], [195, 2, 1, "", "harray1_from_points1"], [196, 2, 1, "", "hyperbola_to_compas"], [197, 2, 1, "", "line_to_compas"], [198, 2, 1, "", "line_to_occ"], [199, 2, 1, "", "location_to_compas"], [200, 2, 1, "", "ngon_to_face"], [201, 2, 1, "", "parabola_to_compas"], [202, 2, 1, "", "plane_to_compas"], [203, 2, 1, "", "plane_to_occ"], [204, 2, 1, "", "plane_to_occ_ax2"], [205, 2, 1, "", "plane_to_occ_ax3"], [206, 2, 1, "", "point2d_to_compas"], [207, 2, 1, "", "point_to_compas"], [208, 2, 1, "", "point_to_occ"], [209, 2, 1, "", "points1_from_array1"], [210, 2, 1, "", "points2_from_array2"], [211, 2, 1, "", "quad_to_face"], [212, 2, 1, "", "sphere_to_compas"], [213, 2, 1, "", "sphere_to_occ"], [214, 2, 1, "", "torus_to_occ"], [215, 2, 1, "", "triangle_to_face"], [216, 2, 1, "", "vector2d_to_compas"], [217, 2, 1, "", "vector_to_compas"], [218, 2, 1, "", "vector_to_occ"]], "compas_occ.geometry": [[219, 0, 1, "", "OCCCurve"], [269, 0, 1, "", "OCCCurve2d"], [313, 0, 1, "", "OCCExtrusionSurface"], [364, 0, 1, "", "OCCNurbsCurve"], [431, 0, 1, "", "OCCNurbsSurface"], [488, 0, 1, "", "OCCRevolutionSurface"], [539, 0, 1, "", "OCCSurface"]], "compas_occ.geometry.OCCCurve": [[220, 1, 1, "", "ToString"], [221, 1, 1, "", "aabb"], [222, 1, 1, "", "closest_parameters_curve"], [223, 1, 1, "", "closest_point"], [224, 1, 1, "", "closest_points_curve"], [225, 1, 1, "", "compute_aabb"], [226, 1, 1, "", "compute_obb"], [227, 1, 1, "", "copy"], [228, 1, 1, "", "curvature_at"], [229, 1, 1, "", "divide"], [230, 1, 1, "", "divide_by_count"], [231, 1, 1, "", "divide_by_length"], [232, 1, 1, "", "embedded"], [233, 1, 1, "", "fair"], [234, 1, 1, "", "frame_at"], [235, 1, 1, "", "from_json"], [236, 1, 1, "", "from_jsonstring"], [237, 1, 1, "", "from_obj"], [238, 1, 1, "", "from_occ"], [239, 1, 1, "", "from_step"], [240, 1, 1, "", "length"], [241, 1, 1, "", "normal_at"], [242, 1, 1, "", "offset"], [243, 1, 1, "", "parameter_at_distance"], [244, 1, 1, "", "point_at"], [245, 1, 1, "", "projected"], [246, 1, 1, "", "reverse"], [247, 1, 1, "", "reversed"], [248, 1, 1, "", "rotate"], [249, 1, 1, "", "rotated"], [250, 1, 1, "", "scale"], [251, 1, 1, "", "scaled"], [252, 1, 1, "", "sha256"], [253, 1, 1, "", "smooth"], [254, 1, 1, "", "split"], [255, 1, 1, "", "tangent_at"], [256, 1, 1, "", "to_json"], [257, 1, 1, "", "to_jsonstring"], [258, 1, 1, "", "to_obj"], [259, 1, 1, "", "to_points"], [260, 1, 1, "", "to_polygon"], [261, 1, 1, "", "to_polyline"], [262, 1, 1, "", "to_step"], [263, 1, 1, "", "transform"], [264, 1, 1, "", "transformed"], [265, 1, 1, "", "translate"], [266, 1, 1, "", "translated"], [267, 1, 1, "", "trim"], [268, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCCurve2d": [[270, 1, 1, "", "ToString"], [271, 1, 1, "", "aabb"], [272, 1, 1, "", "closest_point"], [273, 1, 1, "", "compute_aabb"], [274, 1, 1, "", "compute_obb"], [275, 1, 1, "", "copy"], [276, 1, 1, "", "curvature_at"], [277, 1, 1, "", "divide_by_count"], [278, 1, 1, "", "divide_by_length"], [279, 1, 1, "", "fair"], [280, 1, 1, "", "frame_at"], [281, 1, 1, "", "from_json"], [282, 1, 1, "", "from_jsonstring"], [283, 1, 1, "", "from_obj"], [284, 1, 1, "", "from_occ"], [285, 1, 1, "", "from_step"], [286, 1, 1, "", "length"], [287, 1, 1, "", "normal_at"], [288, 1, 1, "", "offset"], [289, 1, 1, "", "point_at"], [290, 1, 1, "", "reverse"], [291, 1, 1, "", "reversed"], [292, 1, 1, "", "rotate"], [293, 1, 1, "", "rotated"], [294, 1, 1, "", "scale"], [295, 1, 1, "", "scaled"], [296, 1, 1, "", "sha256"], [297, 1, 1, "", "smooth"], [298, 1, 1, "", "split"], [299, 1, 1, "", "tangent_at"], [300, 1, 1, "", "to_json"], [301, 1, 1, "", "to_jsonstring"], [302, 1, 1, "", "to_obj"], [303, 1, 1, "", "to_points"], [304, 1, 1, "", "to_polygon"], [305, 1, 1, "", "to_polyline"], [306, 1, 1, "", "to_step"], [307, 1, 1, "", "transform"], [308, 1, 1, "", "transformed"], [309, 1, 1, "", "translate"], [310, 1, 1, "", "translated"], [311, 1, 1, "", "trim"], [312, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCExtrusionSurface": [[314, 1, 1, "", "ToString"], [315, 1, 1, "", "aabb"], [316, 1, 1, "", "boundary"], [317, 1, 1, "", "closest_point"], [318, 1, 1, "", "compute"], [319, 1, 1, "", "compute_aabb"], [320, 1, 1, "", "compute_obb"], [321, 1, 1, "", "copy"], [322, 1, 1, "", "curvature_at"], [323, 1, 1, "", "frame_at"], [324, 1, 1, "", "from_face"], [325, 1, 1, "", "from_json"], [326, 1, 1, "", "from_jsonstring"], [327, 1, 1, "", "from_obj"], [328, 1, 1, "", "from_occ"], [329, 1, 1, "", "from_plane"], [330, 1, 1, "", "from_step"], [331, 1, 1, "", "gaussian_curvature_at"], [332, 1, 1, "", "intersections_with_curve"], [333, 1, 1, "", "intersections_with_line"], [334, 1, 1, "", "intersections_with_plane"], [335, 1, 1, "", "isocurve_u"], [336, 1, 1, "", "isocurve_v"], [337, 1, 1, "", "mean_curvature_at"], [338, 1, 1, "", "normal_at"], [339, 1, 1, "", "obb"], [340, 1, 1, "", "point_at"], [341, 1, 1, "", "pointgrid"], [342, 1, 1, "", "rotate"], [343, 1, 1, "", "rotated"], [344, 1, 1, "", "scale"], [345, 1, 1, "", "scaled"], [346, 1, 1, "", "sha256"], [347, 1, 1, "", "space_u"], [348, 1, 1, "", "space_v"], [349, 1, 1, "", "to_brep"], [350, 1, 1, "", "to_json"], [351, 1, 1, "", "to_jsonstring"], [352, 1, 1, "", "to_mesh"], [353, 1, 1, "", "to_polyhedron"], [354, 1, 1, "", "to_quads"], [355, 1, 1, "", "to_step"], [356, 1, 1, "", "to_tesselation"], [357, 1, 1, "", "to_triangles"], [358, 1, 1, "", "to_vertices_and_faces"], [359, 1, 1, "", "transform"], [360, 1, 1, "", "transformed"], [361, 1, 1, "", "translate"], [362, 1, 1, "", "translated"], [363, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCNurbsCurve": [[365, 1, 1, "", "ToString"], [366, 1, 1, "", "aabb"], [367, 1, 1, "", "closest_parameters_curve"], [368, 1, 1, "", "closest_point"], [369, 1, 1, "", "closest_points_curve"], [370, 1, 1, "", "compute_aabb"], [371, 1, 1, "", "compute_obb"], [372, 1, 1, "", "copy"], [373, 1, 1, "", "curvature_at"], [374, 1, 1, "", "divide"], [375, 1, 1, "", "divide_by_count"], [376, 1, 1, "", "divide_by_length"], [377, 1, 1, "", "elevate_degree"], [378, 1, 1, "", "embedded"], [379, 1, 1, "", "fair"], [380, 1, 1, "", "frame_at"], [381, 1, 1, "", "from_arc"], [382, 1, 1, "", "from_circle"], [383, 1, 1, "", "from_ellipse"], [384, 1, 1, "", "from_interpolation"], [385, 1, 1, "", "from_json"], [386, 1, 1, "", "from_jsonstring"], [387, 1, 1, "", "from_line"], [388, 1, 1, "", "from_native"], [389, 1, 1, "", "from_obj"], [390, 1, 1, "", "from_occ"], [391, 1, 1, "", "from_parameters"], [392, 1, 1, "", "from_points"], [393, 1, 1, "", "from_step"], [394, 1, 1, "", "insert_knot"], [395, 1, 1, "", "join"], [396, 1, 1, "", "joined"], [397, 1, 1, "", "length"], [398, 1, 1, "", "normal_at"], [399, 1, 1, "", "offset"], [400, 1, 1, "", "parameter_at_distance"], [401, 1, 1, "", "point_at"], [402, 1, 1, "", "projected"], [403, 1, 1, "", "reduce_degree"], [404, 1, 1, "", "refine_knot"], [405, 1, 1, "", "remove_knot"], [406, 1, 1, "", "reverse"], [407, 1, 1, "", "reversed"], [408, 1, 1, "", "rotate"], [409, 1, 1, "", "rotated"], [410, 1, 1, "", "scale"], [411, 1, 1, "", "scaled"], [412, 1, 1, "", "segment"], [413, 1, 1, "", "segmented"], [414, 1, 1, "", "sha256"], [415, 1, 1, "", "smooth"], [416, 1, 1, "", "split"], [417, 1, 1, "", "tangent_at"], [418, 1, 1, "", "to_json"], [419, 1, 1, "", "to_jsonstring"], [420, 1, 1, "", "to_obj"], [421, 1, 1, "", "to_points"], [422, 1, 1, "", "to_polygon"], [423, 1, 1, "", "to_polyline"], [424, 1, 1, "", "to_step"], [425, 1, 1, "", "transform"], [426, 1, 1, "", "transformed"], [427, 1, 1, "", "translate"], [428, 1, 1, "", "translated"], [429, 1, 1, "", "trim"], [430, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCNurbsSurface": [[432, 1, 1, "", "ToString"], [433, 1, 1, "", "aabb"], [434, 1, 1, "", "boundary"], [435, 1, 1, "", "closest_point"], [436, 1, 1, "", "compute_aabb"], [437, 1, 1, "", "compute_obb"], [438, 1, 1, "", "copy"], [439, 1, 1, "", "curvature_at"], [440, 1, 1, "", "frame_at"], [441, 1, 1, "", "from_extrusion"], [442, 1, 1, "", "from_face"], [443, 1, 1, "", "from_fill"], [444, 1, 1, "", "from_interpolation"], [445, 1, 1, "", "from_json"], [446, 1, 1, "", "from_jsonstring"], [447, 1, 1, "", "from_meshgrid"], [448, 1, 1, "", "from_native"], [449, 1, 1, "", "from_obj"], [450, 1, 1, "", "from_occ"], [451, 1, 1, "", "from_parameters"], [452, 1, 1, "", "from_plane"], [453, 1, 1, "", "from_points"], [454, 1, 1, "", "from_step"], [455, 1, 1, "", "gaussian_curvature_at"], [456, 1, 1, "", "intersections_with_curve"], [457, 1, 1, "", "intersections_with_line"], [458, 1, 1, "", "intersections_with_plane"], [459, 1, 1, "", "isocurve_u"], [460, 1, 1, "", "isocurve_v"], [461, 1, 1, "", "mean_curvature_at"], [462, 1, 1, "", "normal_at"], [463, 1, 1, "", "obb"], [464, 1, 1, "", "point_at"], [465, 1, 1, "", "pointgrid"], [466, 1, 1, "", "rotate"], [467, 1, 1, "", "rotated"], [468, 1, 1, "", "scale"], [469, 1, 1, "", "scaled"], [470, 1, 1, "", "sha256"], [471, 1, 1, "", "space_u"], [472, 1, 1, "", "space_v"], [473, 1, 1, "", "to_brep"], [474, 1, 1, "", "to_json"], [475, 1, 1, "", "to_jsonstring"], [476, 1, 1, "", "to_mesh"], [477, 1, 1, "", "to_polyhedron"], [478, 1, 1, "", "to_quads"], [479, 1, 1, "", "to_step"], [480, 1, 1, "", "to_tesselation"], [481, 1, 1, "", "to_triangles"], [482, 1, 1, "", "to_vertices_and_faces"], [483, 1, 1, "", "transform"], [484, 1, 1, "", "transformed"], [485, 1, 1, "", "translate"], [486, 1, 1, "", "translated"], [487, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCRevolutionSurface": [[489, 1, 1, "", "ToString"], [490, 1, 1, "", "aabb"], [491, 1, 1, "", "boundary"], [492, 1, 1, "", "closest_point"], [493, 1, 1, "", "compute"], [494, 1, 1, "", "compute_aabb"], [495, 1, 1, "", "compute_obb"], [496, 1, 1, "", "copy"], [497, 1, 1, "", "curvature_at"], [498, 1, 1, "", "frame_at"], [499, 1, 1, "", "from_face"], [500, 1, 1, "", "from_json"], [501, 1, 1, "", "from_jsonstring"], [502, 1, 1, "", "from_obj"], [503, 1, 1, "", "from_occ"], [504, 1, 1, "", "from_plane"], [505, 1, 1, "", "from_step"], [506, 1, 1, "", "gaussian_curvature_at"], [507, 1, 1, "", "intersections_with_curve"], [508, 1, 1, "", "intersections_with_line"], [509, 1, 1, "", "intersections_with_plane"], [510, 1, 1, "", "isocurve_u"], [511, 1, 1, "", "isocurve_v"], [512, 1, 1, "", "mean_curvature_at"], [513, 1, 1, "", "normal_at"], [514, 1, 1, "", "obb"], [515, 1, 1, "", "point_at"], [516, 1, 1, "", "pointgrid"], [517, 1, 1, "", "rotate"], [518, 1, 1, "", "rotated"], [519, 1, 1, "", "scale"], [520, 1, 1, "", "scaled"], [521, 1, 1, "", "sha256"], [522, 1, 1, "", "space_u"], [523, 1, 1, "", "space_v"], [524, 1, 1, "", "to_brep"], [525, 1, 1, "", "to_json"], [526, 1, 1, "", "to_jsonstring"], [527, 1, 1, "", "to_mesh"], [528, 1, 1, "", "to_polyhedron"], [529, 1, 1, "", "to_quads"], [530, 1, 1, "", "to_step"], [531, 1, 1, "", "to_tesselation"], [532, 1, 1, "", "to_triangles"], [533, 1, 1, "", "to_vertices_and_faces"], [534, 1, 1, "", "transform"], [535, 1, 1, "", "transformed"], [536, 1, 1, "", "translate"], [537, 1, 1, "", "translated"], [538, 1, 1, "", "validate_data"]], "compas_occ.geometry.OCCSurface": [[540, 1, 1, "", "ToString"], [541, 1, 1, "", "aabb"], [542, 1, 1, "", "boundary"], [543, 1, 1, "", "closest_point"], [544, 1, 1, "", "compute_aabb"], [545, 1, 1, "", "compute_obb"], [546, 1, 1, "", "copy"], [547, 1, 1, "", "curvature_at"], [548, 1, 1, "", "frame_at"], [549, 1, 1, "", "from_face"], [550, 1, 1, "", "from_json"], [551, 1, 1, "", "from_jsonstring"], [552, 1, 1, "", "from_obj"], [553, 1, 1, "", "from_occ"], [554, 1, 1, "", "from_plane"], [555, 1, 1, "", "from_step"], [556, 1, 1, "", "gaussian_curvature_at"], [557, 1, 1, "", "intersections_with_curve"], [558, 1, 1, "", "intersections_with_line"], [559, 1, 1, "", "intersections_with_plane"], [560, 1, 1, "", "isocurve_u"], [561, 1, 1, "", "isocurve_v"], [562, 1, 1, "", "mean_curvature_at"], [563, 1, 1, "", "normal_at"], [564, 1, 1, "", "obb"], [565, 1, 1, "", "point_at"], [566, 1, 1, "", "pointgrid"], [567, 1, 1, "", "rotate"], [568, 1, 1, "", "rotated"], [569, 1, 1, "", "scale"], [570, 1, 1, "", "scaled"], [571, 1, 1, "", "sha256"], [572, 1, 1, "", "space_u"], [573, 1, 1, "", "space_v"], [574, 1, 1, "", "to_brep"], [575, 1, 1, "", "to_json"], [576, 1, 1, "", "to_jsonstring"], [577, 1, 1, "", "to_mesh"], [578, 1, 1, "", "to_polyhedron"], [579, 1, 1, "", "to_quads"], [580, 1, 1, "", "to_step"], [581, 1, 1, "", "to_tesselation"], [582, 1, 1, "", "to_triangles"], [583, 1, 1, "", "to_vertices_and_faces"], [584, 1, 1, "", "transform"], [585, 1, 1, "", "transformed"], [586, 1, 1, "", "translate"], [587, 1, 1, "", "translated"], [588, 1, 1, "", "validate_data"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "function", "Python function"]}, "titleterms": {"acknowledg": 0, "api": 1, "refer": [1, 628], "compas_occ": [2, 3, 4], "brep": [2, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 631], "class": [2, 5, 6], "convers": 3, "function": 3, "geometri": 4, "curv": [5, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 631], "surfac": [6, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 631], "occbrep": [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, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "tostr": [8, 83, 110, 141, 156, 220, 270, 314, 365, 432, 489, 540], "check": 9, "compute_aabb": [10, 225, 273, 319, 370, 436, 494, 544], "compute_obb": [11, 226, 274, 320, 371, 437, 495, 545], "contain": 12, "contour": 13, "copi": [14, 84, 115, 142, 157, 227, 275, 321, 372, 438, 496, 546], "cull_unused_edg": 15, "cull_unused_fac": 16, "cull_unused_loop": 17, "cull_unused_vertic": 18, "edge_fac": 19, "edge_loop": [20, 21], "fillet": [22, 23, 591], "fix": [24, 116, 143], "from_boolean_differ": 25, "from_boolean_intersect": 26, "from_boolean_union": 27, "from_box": 28, "from_brepfac": 29, "from_brep": 30, "from_con": [31, 117], "from_curv": [32, 86], "from_cylind": [33, 118], "from_extrus": [34, 441], "from_ig": 35, "from_json": [36, 88, 119, 145, 158, 235, 281, 325, 385, 445, 500, 550], "from_jsonstr": [37, 89, 120, 146, 159, 236, 282, 326, 386, 446, 501, 551], "from_loft": 38, "from_mesh": 39, "from_n": [40, 388, 448], "from_pip": 41, "from_plan": [42, 43, 121, 329, 452, 504, 554], "from_polygon": [44, 122, 147], "from_shap": 45, "from_spher": [46, 123], "from_step": [47, 239, 285, 330, 393, 454, 505, 555], "from_surfac": [48, 124], "from_sweep": 49, "from_toru": [50, 125], "heal": 51, "make_solid": 52, "overlap": [53, 594], "rotat": [54, 55, 248, 249, 292, 293, 342, 343, 408, 409, 466, 467, 517, 518, 567, 568], "scale": [56, 57, 250, 251, 294, 295, 344, 345, 410, 411, 468, 469, 519, 520, 569, 570], "sew": 58, "sha256": [59, 97, 129, 151, 163, 252, 296, 346, 414, 470, 521, 571], "simplifi": 60, "slice": [61, 595], "split": [62, 254, 298, 416, 596], "to_ig": 63, "to_json": [64, 104, 132, 152, 164, 256, 300, 350, 418, 474, 525, 575], "to_jsonstr": [65, 105, 133, 153, 165, 257, 301, 351, 419, 475, 526, 576], "to_mesh": [66, 352, 476, 527, 577], "to_polygon": [67, 135, 260, 304, 422], "to_step": [68, 262, 306, 355, 424, 479, 530, 580], "to_stl": 69, "to_tessel": [70, 356, 480, 531, 581], "to_viewmesh": 71, "transform": [72, 73, 263, 264, 307, 308, 359, 360, 425, 426, 483, 484, 534, 535, 584, 585], "translat": [74, 75, 265, 266, 309, 310, 361, 362, 427, 428, 485, 486, 536, 537, 586, 587], "trim": [76, 77, 267, 311, 429, 597], "validate_data": [78, 108, 139, 154, 166, 268, 312, 363, 430, 487, 538, 588], "vertex_edg": 79, "vertex_fac": 80, "vertex_neighbor": 81, "occbrepedg": [82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "from_circl": [85, 382], "from_ellips": [87, 383], "from_lin": [90, 387], "from_point_point": 91, "from_point": [92, 160, 392, 453], "from_vertex_vertex": 93, "from_vertic": 94, "is_equ": [95, 126, 149, 161], "is_sam": [96, 127, 150, 162], "to_bezi": 98, "to_bsplin": 99, "to_circl": 100, "to_curv": 101, "to_ellips": 102, "to_hyperbola": 103, "to_lin": 106, "to_parabola": 107, "occbrepfac": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139], "add_loop": [111, 112], "adjacent_fac": 113, "as_brep": 114, "is_valid": 128, "to_con": 130, "to_cylind": 131, "to_plan": 134, "to_spher": 136, "to_toru": 137, "try_get_nurbssurfac": 138, "occbreploop": [140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154], "from_edg": 144, "from_polylin": 148, "occbrepvertex": [155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166], "array1_from_floats1": 167, "array1_from_integers1": 168, "array1_from_points1": 169, "array2_from_floats2": 170, "array2_from_points2": 171, "ax2_to_compa": 172, "ax3_to_compa": 173, "axis_to_compa": 174, "axis_to_compas_vector": 175, "axis_to_occ": 176, "bezier_to_compa": 177, "bspline_to_compa": 178, "circle_to_compa": 179, "circle_to_occ": 180, "compas_mesh_to_occ_shel": 181, "compas_quadmesh_to_occ_shel": 182, "compas_transformation_to_trsf": 183, "compas_trimesh_to_occ_shel": 184, "cone_to_occ": 185, "cylinder_to_compa": 186, "cylinder_to_occ": 187, "direction_to_compa": 188, "direction_to_occ": 189, "ellipse_to_compa": 190, "ellipse_to_occ": 191, "floats2_from_array2": 192, "frame_to_occ_ax2": 193, "frame_to_occ_ax3": 194, "harray1_from_points1": 195, "hyperbola_to_compa": 196, "line_to_compa": 197, "line_to_occ": 198, "location_to_compa": 199, "ngon_to_fac": 200, "parabola_to_compa": 201, "plane_to_compa": 202, "plane_to_occ": 203, "plane_to_occ_ax2": 204, "plane_to_occ_ax3": 205, "point2d_to_compa": 206, "point_to_compa": 207, "point_to_occ": 208, "points1_from_array1": 209, "points2_from_array2": 210, "quad_to_fac": 211, "sphere_to_compa": 212, "sphere_to_occ": 213, "torus_to_occ": 214, "triangle_to_fac": 215, "vector2d_to_compa": 216, "vector_to_compa": 217, "vector_to_occ": 218, "occcurv": [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268], "aabb": [221, 271, 315, 366, 433, 490, 541], "closest_parameters_curv": [222, 367], "closest_point": [223, 272, 317, 368, 435, 492, 543], "closest_points_curv": [224, 369], "curvature_at": [228, 276, 322, 373, 439, 497, 547], "divid": [229, 374, 605], "divide_by_count": [230, 277, 375], "divide_by_length": [231, 278, 376], "embed": [232, 378], "fair": [233, 279, 379], "frame_at": [234, 280, 323, 380, 440, 498, 548], "from_obj": [237, 283, 327, 389, 449, 502, 552], "from_occ": [238, 284, 328, 390, 450, 503, 553], "length": [240, 286, 397], "normal_at": [241, 287, 338, 398, 462, 513, 563], "offset": [242, 288, 399], "parameter_at_dist": [243, 400], "point_at": [244, 289, 340, 401, 464, 515, 565], "project": [245, 402], "revers": [246, 247, 290, 291, 406, 407], "smooth": [253, 297, 415], "tangent_at": [255, 299, 417], "to_obj": [258, 302, 420], "to_point": [259, 303, 421], "to_polylin": [261, 305, 423], "occcurve2d": [269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "occextrusionsurfac": [313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363], "boundari": [316, 434, 491, 542], "comput": [318, 493], "from_fac": [324, 442, 499, 549], "gaussian_curvature_at": [331, 455, 506, 556], "intersections_with_curv": [332, 456, 507, 557], "intersections_with_lin": [333, 457, 508, 558], "intersections_with_plan": [334, 458, 509, 559], "isocurve_u": [335, 459, 510, 560], "isocurve_v": [336, 460, 511, 561], "mean_curvature_at": [337, 461, 512, 562], "obb": [339, 463, 514, 564], "pointgrid": [341, 465, 516, 566], "space_u": [347, 471, 522, 572], "space_v": [348, 472, 523, 573], "to_brep": [349, 473, 524, 574], "to_polyhedron": [353, 477, 528, 578], "to_quad": [354, 478, 529, 579], "to_triangl": [357, 481, 532, 582], "to_vertices_and_fac": [358, 482, 533, 583], "occnurbscurv": [364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430], "elevate_degre": 377, "from_arc": 381, "from_interpol": [384, 444], "from_paramet": [391, 451], "insert_knot": 394, "join": [395, 396, 611], "reduce_degre": 403, "refine_knot": 404, "remove_knot": 405, "segment": [412, 413, 612], "occnurbssurfac": [431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487], "from_fil": 443, "from_meshgrid": 447, "occrevolutionsurfac": [488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "occsurfac": [539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588], "exampl": 589, "explor": 590, "topologi": 590, "add": 591, "edg": 591, "shape": 592, "from": [592, 593, 606, 607, 608, 609, 610, 617, 618, 619, 620, 621, 622], "boolean": 592, "mesh": 593, "find": 594, "between": 594, "two": 594, "With": [595, 596, 597, 623, 626], "plane": [595, 596, 597], "hole": [598, 599], "closest": [601, 602], "paramet": [601, 609, 621], "point": [602, 610, 622, 626, 627], "comparison": [603, 604], "1": [603, 617], "2": [604, 618], "circl": 606, "interpol": 607, "line": [608, 623], "control": [610, 626], "axi": 615, "align": 615, "bound": 615, "box": 615, "frame": 616, "extrus": [617, 618], "fill": 619, "meshgrid": 620, "intersect": 623, "isocurv": 624, "json": 625, "data": 625, "random": 626, "over": 627, "uv": 627, "space": 627, "compa": 628, "occ": 628, "tabl": 628, "content": 628, "indic": 628, "instal": 629, "stabl": 629, "develop": 629, "licens": 630, "tutori": 631, "work": 631, "visualis": 631, "us": 631, "plugin": 631, "system": 631}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"Acknowledgements": [[0, "acknowledgements"]], "API Reference": [[1, "api-reference"]], "compas_occ.brep": [[2, "compas-occ-brep"]], "Classes": [[2, "classes"], [5, "classes"], [6, "classes"]], "compas_occ.conversions": [[3, "compas-occ-conversions"]], "Functions": [[3, "functions"]], "compas_occ.geometry": [[4, "compas-occ-geometry"]], "Curves": [[5, "curves"], [613, "curves"]], "Surfaces": [[6, "surfaces"], [614, "surfaces"]], "OCCBrep": [[7, "occbrep"]], "OCCBrep.ToString": [[8, "occbrep-tostring"]], "OCCBrep.check": [[9, "occbrep-check"]], "OCCBrep.compute_aabb": [[10, "occbrep-compute-aabb"]], "OCCBrep.compute_obb": [[11, "occbrep-compute-obb"]], "OCCBrep.contains": [[12, "occbrep-contains"]], "OCCBrep.contours": [[13, "occbrep-contours"]], "OCCBrep.copy": [[14, "occbrep-copy"]], "OCCBrep.cull_unused_edges": [[15, "occbrep-cull-unused-edges"]], "OCCBrep.cull_unused_faces": [[16, "occbrep-cull-unused-faces"]], "OCCBrep.cull_unused_loops": [[17, "occbrep-cull-unused-loops"]], "OCCBrep.cull_unused_vertices": [[18, "occbrep-cull-unused-vertices"]], "OCCBrep.edge_faces": [[19, "occbrep-edge-faces"]], "OCCBrep.edge_loop": [[20, "occbrep-edge-loop"]], "OCCBrep.edge_loops": [[21, "occbrep-edge-loops"]], "OCCBrep.fillet": [[22, "occbrep-fillet"]], "OCCBrep.filleted": [[23, "occbrep-filleted"]], "OCCBrep.fix": [[24, "occbrep-fix"]], "OCCBrep.from_boolean_difference": [[25, "occbrep-from-boolean-difference"]], "OCCBrep.from_boolean_intersection": [[26, "occbrep-from-boolean-intersection"]], "OCCBrep.from_boolean_union": [[27, "occbrep-from-boolean-union"]], "OCCBrep.from_box": [[28, "occbrep-from-box"]], "OCCBrep.from_brepfaces": [[29, "occbrep-from-brepfaces"]], "OCCBrep.from_breps": [[30, "occbrep-from-breps"]], "OCCBrep.from_cone": [[31, "occbrep-from-cone"]], "OCCBrep.from_curves": [[32, "occbrep-from-curves"]], "OCCBrep.from_cylinder": [[33, "occbrep-from-cylinder"]], "OCCBrep.from_extrusion": [[34, "occbrep-from-extrusion"]], "OCCBrep.from_iges": [[35, "occbrep-from-iges"]], "OCCBrep.from_json": [[36, "occbrep-from-json"]], "OCCBrep.from_jsonstring": [[37, "occbrep-from-jsonstring"]], "OCCBrep.from_loft": [[38, "occbrep-from-loft"]], "OCCBrep.from_mesh": [[39, "occbrep-from-mesh"]], "OCCBrep.from_native": [[40, "occbrep-from-native"]], "OCCBrep.from_pipe": [[41, "occbrep-from-pipe"]], "OCCBrep.from_plane": [[42, "occbrep-from-plane"]], "OCCBrep.from_planes": [[43, "occbrep-from-planes"]], "OCCBrep.from_polygons": [[44, "occbrep-from-polygons"]], "OCCBrep.from_shape": [[45, "occbrep-from-shape"]], "OCCBrep.from_sphere": [[46, "occbrep-from-sphere"]], "OCCBrep.from_step": [[47, "occbrep-from-step"]], "OCCBrep.from_surface": [[48, "occbrep-from-surface"]], "OCCBrep.from_sweep": [[49, "occbrep-from-sweep"]], "OCCBrep.from_torus": [[50, "occbrep-from-torus"]], "OCCBrep.heal": [[51, "occbrep-heal"]], "OCCBrep.make_solid": [[52, "occbrep-make-solid"]], "OCCBrep.overlap": [[53, "occbrep-overlap"]], "OCCBrep.rotate": [[54, "occbrep-rotate"]], "OCCBrep.rotated": [[55, "occbrep-rotated"]], "OCCBrep.scale": [[56, "occbrep-scale"]], "OCCBrep.scaled": [[57, "occbrep-scaled"]], "OCCBrep.sew": [[58, "occbrep-sew"]], "OCCBrep.sha256": [[59, "occbrep-sha256"]], "OCCBrep.simplify": [[60, "occbrep-simplify"]], "OCCBrep.slice": [[61, "occbrep-slice"]], "OCCBrep.split": [[62, "occbrep-split"]], "OCCBrep.to_iges": [[63, "occbrep-to-iges"]], "OCCBrep.to_json": [[64, "occbrep-to-json"]], "OCCBrep.to_jsonstring": [[65, "occbrep-to-jsonstring"]], "OCCBrep.to_meshes": [[66, "occbrep-to-meshes"]], "OCCBrep.to_polygons": [[67, "occbrep-to-polygons"]], "OCCBrep.to_step": [[68, "occbrep-to-step"]], "OCCBrep.to_stl": [[69, "occbrep-to-stl"]], "OCCBrep.to_tesselation": [[70, "occbrep-to-tesselation"]], "OCCBrep.to_viewmesh": [[71, "occbrep-to-viewmesh"]], "OCCBrep.transform": [[72, "occbrep-transform"]], "OCCBrep.transformed": [[73, "occbrep-transformed"]], "OCCBrep.translate": [[74, "occbrep-translate"]], "OCCBrep.translated": [[75, "occbrep-translated"]], "OCCBrep.trim": [[76, "occbrep-trim"]], "OCCBrep.trimmed": [[77, "occbrep-trimmed"]], "OCCBrep.validate_data": [[78, "occbrep-validate-data"]], "OCCBrep.vertex_edges": [[79, "occbrep-vertex-edges"]], "OCCBrep.vertex_faces": [[80, "occbrep-vertex-faces"]], "OCCBrep.vertex_neighbors": [[81, "occbrep-vertex-neighbors"]], "OCCBrepEdge": [[82, "occbrepedge"]], "OCCBrepEdge.ToString": [[83, "occbrepedge-tostring"]], "OCCBrepEdge.copy": [[84, "occbrepedge-copy"]], "OCCBrepEdge.from_circle": [[85, "occbrepedge-from-circle"]], "OCCBrepEdge.from_curve": [[86, "occbrepedge-from-curve"]], "OCCBrepEdge.from_ellipse": [[87, "occbrepedge-from-ellipse"]], "OCCBrepEdge.from_json": [[88, "occbrepedge-from-json"]], "OCCBrepEdge.from_jsonstring": [[89, "occbrepedge-from-jsonstring"]], "OCCBrepEdge.from_line": [[90, "occbrepedge-from-line"]], "OCCBrepEdge.from_point_point": [[91, "occbrepedge-from-point-point"]], "OCCBrepEdge.from_points": [[92, "occbrepedge-from-points"]], "OCCBrepEdge.from_vertex_vertex": [[93, "occbrepedge-from-vertex-vertex"]], "OCCBrepEdge.from_vertices": [[94, "occbrepedge-from-vertices"]], "OCCBrepEdge.is_equal": [[95, "occbrepedge-is-equal"]], "OCCBrepEdge.is_same": [[96, "occbrepedge-is-same"]], "OCCBrepEdge.sha256": [[97, "occbrepedge-sha256"]], "OCCBrepEdge.to_bezier": [[98, "occbrepedge-to-bezier"]], "OCCBrepEdge.to_bspline": [[99, "occbrepedge-to-bspline"]], "OCCBrepEdge.to_circle": [[100, "occbrepedge-to-circle"]], "OCCBrepEdge.to_curve": [[101, "occbrepedge-to-curve"]], "OCCBrepEdge.to_ellipse": [[102, "occbrepedge-to-ellipse"]], "OCCBrepEdge.to_hyperbola": [[103, "occbrepedge-to-hyperbola"]], "OCCBrepEdge.to_json": [[104, "occbrepedge-to-json"]], "OCCBrepEdge.to_jsonstring": [[105, "occbrepedge-to-jsonstring"]], "OCCBrepEdge.to_line": [[106, "occbrepedge-to-line"]], "OCCBrepEdge.to_parabola": [[107, "occbrepedge-to-parabola"]], "OCCBrepEdge.validate_data": [[108, "occbrepedge-validate-data"]], "OCCBrepFace": [[109, "occbrepface"]], "OCCBrepFace.ToString": [[110, "occbrepface-tostring"]], "OCCBrepFace.add_loop": [[111, "occbrepface-add-loop"]], "OCCBrepFace.add_loops": [[112, "occbrepface-add-loops"]], "OCCBrepFace.adjacent_faces": [[113, "occbrepface-adjacent-faces"]], "OCCBrepFace.as_brep": [[114, "occbrepface-as-brep"]], "OCCBrepFace.copy": [[115, "occbrepface-copy"]], "OCCBrepFace.fix": [[116, "occbrepface-fix"]], "OCCBrepFace.from_cone": [[117, "occbrepface-from-cone"]], "OCCBrepFace.from_cylinder": [[118, "occbrepface-from-cylinder"]], "OCCBrepFace.from_json": [[119, "occbrepface-from-json"]], "OCCBrepFace.from_jsonstring": [[120, "occbrepface-from-jsonstring"]], "OCCBrepFace.from_plane": [[121, "occbrepface-from-plane"]], "OCCBrepFace.from_polygon": [[122, "occbrepface-from-polygon"]], "OCCBrepFace.from_sphere": [[123, "occbrepface-from-sphere"]], "OCCBrepFace.from_surface": [[124, "occbrepface-from-surface"]], "OCCBrepFace.from_torus": [[125, "occbrepface-from-torus"]], "OCCBrepFace.is_equal": [[126, "occbrepface-is-equal"]], "OCCBrepFace.is_same": [[127, "occbrepface-is-same"]], "OCCBrepFace.is_valid": [[128, "occbrepface-is-valid"]], "OCCBrepFace.sha256": [[129, "occbrepface-sha256"]], "OCCBrepFace.to_cone": [[130, "occbrepface-to-cone"]], "OCCBrepFace.to_cylinder": [[131, "occbrepface-to-cylinder"]], "OCCBrepFace.to_json": [[132, "occbrepface-to-json"]], "OCCBrepFace.to_jsonstring": [[133, "occbrepface-to-jsonstring"]], "OCCBrepFace.to_plane": [[134, "occbrepface-to-plane"]], "OCCBrepFace.to_polygon": [[135, "occbrepface-to-polygon"]], "OCCBrepFace.to_sphere": [[136, "occbrepface-to-sphere"]], "OCCBrepFace.to_torus": [[137, "occbrepface-to-torus"]], "OCCBrepFace.try_get_nurbssurface": [[138, "occbrepface-try-get-nurbssurface"]], "OCCBrepFace.validate_data": [[139, "occbrepface-validate-data"]], "OCCBrepLoop": [[140, "occbreploop"]], "OCCBrepLoop.ToString": [[141, "occbreploop-tostring"]], "OCCBrepLoop.copy": [[142, "occbreploop-copy"]], "OCCBrepLoop.fix": [[143, "occbreploop-fix"]], "OCCBrepLoop.from_edges": [[144, "occbreploop-from-edges"]], "OCCBrepLoop.from_json": [[145, "occbreploop-from-json"]], "OCCBrepLoop.from_jsonstring": [[146, "occbreploop-from-jsonstring"]], "OCCBrepLoop.from_polygon": [[147, "occbreploop-from-polygon"]], "OCCBrepLoop.from_polyline": [[148, "occbreploop-from-polyline"]], "OCCBrepLoop.is_equal": [[149, "occbreploop-is-equal"]], "OCCBrepLoop.is_same": [[150, "occbreploop-is-same"]], "OCCBrepLoop.sha256": [[151, "occbreploop-sha256"]], "OCCBrepLoop.to_json": [[152, "occbreploop-to-json"]], "OCCBrepLoop.to_jsonstring": [[153, "occbreploop-to-jsonstring"]], "OCCBrepLoop.validate_data": [[154, "occbreploop-validate-data"]], "OCCBrepVertex": [[155, "occbrepvertex"]], "OCCBrepVertex.ToString": [[156, "occbrepvertex-tostring"]], "OCCBrepVertex.copy": [[157, "occbrepvertex-copy"]], "OCCBrepVertex.from_json": [[158, "occbrepvertex-from-json"]], "OCCBrepVertex.from_jsonstring": [[159, "occbrepvertex-from-jsonstring"]], "OCCBrepVertex.from_point": [[160, "occbrepvertex-from-point"]], "OCCBrepVertex.is_equal": [[161, "occbrepvertex-is-equal"]], "OCCBrepVertex.is_same": [[162, "occbrepvertex-is-same"]], "OCCBrepVertex.sha256": [[163, "occbrepvertex-sha256"]], "OCCBrepVertex.to_json": [[164, "occbrepvertex-to-json"]], "OCCBrepVertex.to_jsonstring": [[165, "occbrepvertex-to-jsonstring"]], "OCCBrepVertex.validate_data": [[166, "occbrepvertex-validate-data"]], "array1_from_floats1": [[167, "array1-from-floats1"]], "array1_from_integers1": [[168, "array1-from-integers1"]], "array1_from_points1": [[169, "array1-from-points1"]], "array2_from_floats2": [[170, "array2-from-floats2"]], "array2_from_points2": [[171, "array2-from-points2"]], "ax2_to_compas": [[172, "ax2-to-compas"]], "ax3_to_compas": [[173, "ax3-to-compas"]], "axis_to_compas": [[174, "axis-to-compas"]], "axis_to_compas_vector": [[175, "axis-to-compas-vector"]], "axis_to_occ": [[176, "axis-to-occ"]], "bezier_to_compas": [[177, "bezier-to-compas"]], "bspline_to_compas": [[178, "bspline-to-compas"]], "circle_to_compas": [[179, "circle-to-compas"]], "circle_to_occ": [[180, "circle-to-occ"]], "compas_mesh_to_occ_shell": [[181, "compas-mesh-to-occ-shell"]], "compas_quadmesh_to_occ_shell": [[182, "compas-quadmesh-to-occ-shell"]], "compas_transformation_to_trsf": [[183, "compas-transformation-to-trsf"]], "compas_trimesh_to_occ_shell": [[184, "compas-trimesh-to-occ-shell"]], "cone_to_occ": [[185, "cone-to-occ"]], "cylinder_to_compas": [[186, "cylinder-to-compas"]], "cylinder_to_occ": [[187, "cylinder-to-occ"]], "direction_to_compas": [[188, "direction-to-compas"]], "direction_to_occ": [[189, "direction-to-occ"]], "ellipse_to_compas": [[190, "ellipse-to-compas"]], "ellipse_to_occ": [[191, "ellipse-to-occ"]], "floats2_from_array2": [[192, "floats2-from-array2"]], "frame_to_occ_ax2": [[193, "frame-to-occ-ax2"]], "frame_to_occ_ax3": [[194, "frame-to-occ-ax3"]], "harray1_from_points1": [[195, "harray1-from-points1"]], "hyperbola_to_compas": [[196, "hyperbola-to-compas"]], "line_to_compas": [[197, "line-to-compas"]], "line_to_occ": [[198, "line-to-occ"]], "location_to_compas": [[199, "location-to-compas"]], "ngon_to_face": [[200, "ngon-to-face"]], "parabola_to_compas": [[201, "parabola-to-compas"]], "plane_to_compas": [[202, "plane-to-compas"]], "plane_to_occ": [[203, "plane-to-occ"]], "plane_to_occ_ax2": [[204, "plane-to-occ-ax2"]], "plane_to_occ_ax3": [[205, "plane-to-occ-ax3"]], "point2d_to_compas": [[206, "point2d-to-compas"]], "point_to_compas": [[207, "point-to-compas"]], "point_to_occ": [[208, "point-to-occ"]], "points1_from_array1": [[209, "points1-from-array1"]], "points2_from_array2": [[210, "points2-from-array2"]], "quad_to_face": [[211, "quad-to-face"]], "sphere_to_compas": [[212, "sphere-to-compas"]], "sphere_to_occ": [[213, "sphere-to-occ"]], "torus_to_occ": [[214, "torus-to-occ"]], "triangle_to_face": [[215, "triangle-to-face"]], "vector2d_to_compas": [[216, "vector2d-to-compas"]], "vector_to_compas": [[217, "vector-to-compas"]], "vector_to_occ": [[218, "vector-to-occ"]], "OCCCurve": [[219, "occcurve"]], "OCCCurve.ToString": [[220, "occcurve-tostring"]], "OCCCurve.aabb": [[221, "occcurve-aabb"]], "OCCCurve.closest_parameters_curve": [[222, "occcurve-closest-parameters-curve"]], "OCCCurve.closest_point": [[223, "occcurve-closest-point"]], "OCCCurve.closest_points_curve": [[224, "occcurve-closest-points-curve"]], "OCCCurve.compute_aabb": [[225, "occcurve-compute-aabb"]], "OCCCurve.compute_obb": [[226, "occcurve-compute-obb"]], "OCCCurve.copy": [[227, "occcurve-copy"]], "OCCCurve.curvature_at": [[228, "occcurve-curvature-at"]], "OCCCurve.divide": [[229, "occcurve-divide"]], "OCCCurve.divide_by_count": [[230, "occcurve-divide-by-count"]], "OCCCurve.divide_by_length": [[231, "occcurve-divide-by-length"]], "OCCCurve.embedded": [[232, "occcurve-embedded"]], "OCCCurve.fair": [[233, "occcurve-fair"]], "OCCCurve.frame_at": [[234, "occcurve-frame-at"]], "OCCCurve.from_json": [[235, "occcurve-from-json"]], "OCCCurve.from_jsonstring": [[236, "occcurve-from-jsonstring"]], "OCCCurve.from_obj": [[237, "occcurve-from-obj"]], "OCCCurve.from_occ": [[238, "occcurve-from-occ"]], "OCCCurve.from_step": [[239, "occcurve-from-step"]], "OCCCurve.length": [[240, "occcurve-length"]], "OCCCurve.normal_at": [[241, "occcurve-normal-at"]], "OCCCurve.offset": [[242, "occcurve-offset"]], "OCCCurve.parameter_at_distance": [[243, "occcurve-parameter-at-distance"]], "OCCCurve.point_at": [[244, "occcurve-point-at"]], "OCCCurve.projected": [[245, "occcurve-projected"]], "OCCCurve.reverse": [[246, "occcurve-reverse"]], "OCCCurve.reversed": [[247, "occcurve-reversed"]], "OCCCurve.rotate": [[248, "occcurve-rotate"]], "OCCCurve.rotated": [[249, "occcurve-rotated"]], "OCCCurve.scale": [[250, "occcurve-scale"]], "OCCCurve.scaled": [[251, "occcurve-scaled"]], "OCCCurve.sha256": [[252, "occcurve-sha256"]], "OCCCurve.smooth": [[253, "occcurve-smooth"]], "OCCCurve.split": [[254, "occcurve-split"]], "OCCCurve.tangent_at": [[255, "occcurve-tangent-at"]], "OCCCurve.to_json": [[256, "occcurve-to-json"]], "OCCCurve.to_jsonstring": [[257, "occcurve-to-jsonstring"]], "OCCCurve.to_obj": [[258, "occcurve-to-obj"]], "OCCCurve.to_points": [[259, "occcurve-to-points"]], "OCCCurve.to_polygon": [[260, "occcurve-to-polygon"]], "OCCCurve.to_polyline": [[261, "occcurve-to-polyline"]], "OCCCurve.to_step": [[262, "occcurve-to-step"]], "OCCCurve.transform": [[263, "occcurve-transform"]], "OCCCurve.transformed": [[264, "occcurve-transformed"]], "OCCCurve.translate": [[265, "occcurve-translate"]], "OCCCurve.translated": [[266, "occcurve-translated"]], "OCCCurve.trim": [[267, "occcurve-trim"]], "OCCCurve.validate_data": [[268, "occcurve-validate-data"]], "OCCCurve2d": [[269, "occcurve2d"]], "OCCCurve2d.ToString": [[270, "occcurve2d-tostring"]], "OCCCurve2d.aabb": [[271, "occcurve2d-aabb"]], "OCCCurve2d.closest_point": [[272, "occcurve2d-closest-point"]], "OCCCurve2d.compute_aabb": [[273, "occcurve2d-compute-aabb"]], "OCCCurve2d.compute_obb": [[274, "occcurve2d-compute-obb"]], "OCCCurve2d.copy": [[275, "occcurve2d-copy"]], "OCCCurve2d.curvature_at": [[276, "occcurve2d-curvature-at"]], "OCCCurve2d.divide_by_count": [[277, "occcurve2d-divide-by-count"]], "OCCCurve2d.divide_by_length": [[278, "occcurve2d-divide-by-length"]], "OCCCurve2d.fair": [[279, "occcurve2d-fair"]], "OCCCurve2d.frame_at": [[280, "occcurve2d-frame-at"]], "OCCCurve2d.from_json": [[281, "occcurve2d-from-json"]], "OCCCurve2d.from_jsonstring": [[282, "occcurve2d-from-jsonstring"]], "OCCCurve2d.from_obj": [[283, "occcurve2d-from-obj"]], "OCCCurve2d.from_occ": [[284, "occcurve2d-from-occ"]], "OCCCurve2d.from_step": [[285, "occcurve2d-from-step"]], "OCCCurve2d.length": [[286, "occcurve2d-length"]], "OCCCurve2d.normal_at": [[287, "occcurve2d-normal-at"]], "OCCCurve2d.offset": [[288, "occcurve2d-offset"]], "OCCCurve2d.point_at": [[289, "occcurve2d-point-at"]], "OCCCurve2d.reverse": [[290, "occcurve2d-reverse"]], "OCCCurve2d.reversed": [[291, "occcurve2d-reversed"]], "OCCCurve2d.rotate": [[292, "occcurve2d-rotate"]], "OCCCurve2d.rotated": [[293, "occcurve2d-rotated"]], "OCCCurve2d.scale": [[294, "occcurve2d-scale"]], "OCCCurve2d.scaled": [[295, "occcurve2d-scaled"]], "OCCCurve2d.sha256": [[296, "occcurve2d-sha256"]], "OCCCurve2d.smooth": [[297, "occcurve2d-smooth"]], "OCCCurve2d.split": [[298, "occcurve2d-split"]], "OCCCurve2d.tangent_at": [[299, "occcurve2d-tangent-at"]], "OCCCurve2d.to_json": [[300, "occcurve2d-to-json"]], "OCCCurve2d.to_jsonstring": [[301, "occcurve2d-to-jsonstring"]], "OCCCurve2d.to_obj": [[302, "occcurve2d-to-obj"]], "OCCCurve2d.to_points": [[303, "occcurve2d-to-points"]], "OCCCurve2d.to_polygon": [[304, "occcurve2d-to-polygon"]], "OCCCurve2d.to_polyline": [[305, "occcurve2d-to-polyline"]], "OCCCurve2d.to_step": [[306, "occcurve2d-to-step"]], "OCCCurve2d.transform": [[307, "occcurve2d-transform"]], "OCCCurve2d.transformed": [[308, "occcurve2d-transformed"]], "OCCCurve2d.translate": [[309, "occcurve2d-translate"]], "OCCCurve2d.translated": [[310, "occcurve2d-translated"]], "OCCCurve2d.trim": [[311, "occcurve2d-trim"]], "OCCCurve2d.validate_data": [[312, "occcurve2d-validate-data"]], "OCCExtrusionSurface": [[313, "occextrusionsurface"]], "OCCExtrusionSurface.ToString": [[314, "occextrusionsurface-tostring"]], "OCCExtrusionSurface.aabb": [[315, "occextrusionsurface-aabb"]], "OCCExtrusionSurface.boundary": [[316, "occextrusionsurface-boundary"]], "OCCExtrusionSurface.closest_point": [[317, "occextrusionsurface-closest-point"]], "OCCExtrusionSurface.compute": [[318, "occextrusionsurface-compute"]], "OCCExtrusionSurface.compute_aabb": [[319, "occextrusionsurface-compute-aabb"]], "OCCExtrusionSurface.compute_obb": [[320, "occextrusionsurface-compute-obb"]], "OCCExtrusionSurface.copy": [[321, "occextrusionsurface-copy"]], "OCCExtrusionSurface.curvature_at": [[322, "occextrusionsurface-curvature-at"]], "OCCExtrusionSurface.frame_at": [[323, "occextrusionsurface-frame-at"]], "OCCExtrusionSurface.from_face": [[324, "occextrusionsurface-from-face"]], "OCCExtrusionSurface.from_json": [[325, "occextrusionsurface-from-json"]], "OCCExtrusionSurface.from_jsonstring": [[326, "occextrusionsurface-from-jsonstring"]], "OCCExtrusionSurface.from_obj": [[327, "occextrusionsurface-from-obj"]], "OCCExtrusionSurface.from_occ": [[328, "occextrusionsurface-from-occ"]], "OCCExtrusionSurface.from_plane": [[329, "occextrusionsurface-from-plane"]], "OCCExtrusionSurface.from_step": [[330, "occextrusionsurface-from-step"]], "OCCExtrusionSurface.gaussian_curvature_at": [[331, "occextrusionsurface-gaussian-curvature-at"]], "OCCExtrusionSurface.intersections_with_curve": [[332, "occextrusionsurface-intersections-with-curve"]], "OCCExtrusionSurface.intersections_with_line": [[333, "occextrusionsurface-intersections-with-line"]], "OCCExtrusionSurface.intersections_with_plane": [[334, "occextrusionsurface-intersections-with-plane"]], "OCCExtrusionSurface.isocurve_u": [[335, "occextrusionsurface-isocurve-u"]], "OCCExtrusionSurface.isocurve_v": [[336, "occextrusionsurface-isocurve-v"]], "OCCExtrusionSurface.mean_curvature_at": [[337, "occextrusionsurface-mean-curvature-at"]], "OCCExtrusionSurface.normal_at": [[338, "occextrusionsurface-normal-at"]], "OCCExtrusionSurface.obb": [[339, "occextrusionsurface-obb"]], "OCCExtrusionSurface.point_at": [[340, "occextrusionsurface-point-at"]], "OCCExtrusionSurface.pointgrid": [[341, "occextrusionsurface-pointgrid"]], "OCCExtrusionSurface.rotate": [[342, "occextrusionsurface-rotate"]], "OCCExtrusionSurface.rotated": [[343, "occextrusionsurface-rotated"]], "OCCExtrusionSurface.scale": [[344, "occextrusionsurface-scale"]], "OCCExtrusionSurface.scaled": [[345, "occextrusionsurface-scaled"]], "OCCExtrusionSurface.sha256": [[346, "occextrusionsurface-sha256"]], "OCCExtrusionSurface.space_u": [[347, "occextrusionsurface-space-u"]], "OCCExtrusionSurface.space_v": [[348, "occextrusionsurface-space-v"]], "OCCExtrusionSurface.to_brep": [[349, "occextrusionsurface-to-brep"]], "OCCExtrusionSurface.to_json": [[350, "occextrusionsurface-to-json"]], "OCCExtrusionSurface.to_jsonstring": [[351, "occextrusionsurface-to-jsonstring"]], "OCCExtrusionSurface.to_mesh": [[352, "occextrusionsurface-to-mesh"]], "OCCExtrusionSurface.to_polyhedron": [[353, "occextrusionsurface-to-polyhedron"]], "OCCExtrusionSurface.to_quads": [[354, "occextrusionsurface-to-quads"]], "OCCExtrusionSurface.to_step": [[355, "occextrusionsurface-to-step"]], "OCCExtrusionSurface.to_tesselation": [[356, "occextrusionsurface-to-tesselation"]], "OCCExtrusionSurface.to_triangles": [[357, "occextrusionsurface-to-triangles"]], "OCCExtrusionSurface.to_vertices_and_faces": [[358, "occextrusionsurface-to-vertices-and-faces"]], "OCCExtrusionSurface.transform": [[359, "occextrusionsurface-transform"]], "OCCExtrusionSurface.transformed": [[360, "occextrusionsurface-transformed"]], "OCCExtrusionSurface.translate": [[361, "occextrusionsurface-translate"]], "OCCExtrusionSurface.translated": [[362, "occextrusionsurface-translated"]], "OCCExtrusionSurface.validate_data": [[363, "occextrusionsurface-validate-data"]], "OCCNurbsCurve": [[364, "occnurbscurve"]], "OCCNurbsCurve.ToString": [[365, "occnurbscurve-tostring"]], "OCCNurbsCurve.aabb": [[366, "occnurbscurve-aabb"]], "OCCNurbsCurve.closest_parameters_curve": [[367, "occnurbscurve-closest-parameters-curve"]], "OCCNurbsCurve.closest_point": [[368, "occnurbscurve-closest-point"]], "OCCNurbsCurve.closest_points_curve": [[369, "occnurbscurve-closest-points-curve"]], "OCCNurbsCurve.compute_aabb": [[370, "occnurbscurve-compute-aabb"]], "OCCNurbsCurve.compute_obb": [[371, "occnurbscurve-compute-obb"]], "OCCNurbsCurve.copy": [[372, "occnurbscurve-copy"]], "OCCNurbsCurve.curvature_at": [[373, "occnurbscurve-curvature-at"]], "OCCNurbsCurve.divide": [[374, "occnurbscurve-divide"]], "OCCNurbsCurve.divide_by_count": [[375, "occnurbscurve-divide-by-count"]], "OCCNurbsCurve.divide_by_length": [[376, "occnurbscurve-divide-by-length"]], "OCCNurbsCurve.elevate_degree": [[377, "occnurbscurve-elevate-degree"]], "OCCNurbsCurve.embedded": [[378, "occnurbscurve-embedded"]], "OCCNurbsCurve.fair": [[379, "occnurbscurve-fair"]], "OCCNurbsCurve.frame_at": [[380, "occnurbscurve-frame-at"]], "OCCNurbsCurve.from_arc": [[381, "occnurbscurve-from-arc"]], "OCCNurbsCurve.from_circle": [[382, "occnurbscurve-from-circle"]], "OCCNurbsCurve.from_ellipse": [[383, "occnurbscurve-from-ellipse"]], "OCCNurbsCurve.from_interpolation": [[384, "occnurbscurve-from-interpolation"]], "OCCNurbsCurve.from_json": [[385, "occnurbscurve-from-json"]], "OCCNurbsCurve.from_jsonstring": [[386, "occnurbscurve-from-jsonstring"]], "OCCNurbsCurve.from_line": [[387, "occnurbscurve-from-line"]], "OCCNurbsCurve.from_native": [[388, "occnurbscurve-from-native"]], "OCCNurbsCurve.from_obj": [[389, "occnurbscurve-from-obj"]], "OCCNurbsCurve.from_occ": [[390, "occnurbscurve-from-occ"]], "OCCNurbsCurve.from_parameters": [[391, "occnurbscurve-from-parameters"]], "OCCNurbsCurve.from_points": [[392, "occnurbscurve-from-points"]], "OCCNurbsCurve.from_step": [[393, "occnurbscurve-from-step"]], "OCCNurbsCurve.insert_knot": [[394, "occnurbscurve-insert-knot"]], "OCCNurbsCurve.join": [[395, "occnurbscurve-join"]], "OCCNurbsCurve.joined": [[396, "occnurbscurve-joined"]], "OCCNurbsCurve.length": [[397, "occnurbscurve-length"]], "OCCNurbsCurve.normal_at": [[398, "occnurbscurve-normal-at"]], "OCCNurbsCurve.offset": [[399, "occnurbscurve-offset"]], "OCCNurbsCurve.parameter_at_distance": [[400, "occnurbscurve-parameter-at-distance"]], "OCCNurbsCurve.point_at": [[401, "occnurbscurve-point-at"]], "OCCNurbsCurve.projected": [[402, "occnurbscurve-projected"]], "OCCNurbsCurve.reduce_degree": [[403, "occnurbscurve-reduce-degree"]], "OCCNurbsCurve.refine_knot": [[404, "occnurbscurve-refine-knot"]], "OCCNurbsCurve.remove_knot": [[405, "occnurbscurve-remove-knot"]], "OCCNurbsCurve.reverse": [[406, "occnurbscurve-reverse"]], "OCCNurbsCurve.reversed": [[407, "occnurbscurve-reversed"]], "OCCNurbsCurve.rotate": [[408, "occnurbscurve-rotate"]], "OCCNurbsCurve.rotated": [[409, "occnurbscurve-rotated"]], "OCCNurbsCurve.scale": [[410, "occnurbscurve-scale"]], "OCCNurbsCurve.scaled": [[411, "occnurbscurve-scaled"]], "OCCNurbsCurve.segment": [[412, "occnurbscurve-segment"]], "OCCNurbsCurve.segmented": [[413, "occnurbscurve-segmented"]], "OCCNurbsCurve.sha256": [[414, "occnurbscurve-sha256"]], "OCCNurbsCurve.smooth": [[415, "occnurbscurve-smooth"]], "OCCNurbsCurve.split": [[416, "occnurbscurve-split"]], "OCCNurbsCurve.tangent_at": [[417, "occnurbscurve-tangent-at"]], "OCCNurbsCurve.to_json": [[418, "occnurbscurve-to-json"]], "OCCNurbsCurve.to_jsonstring": [[419, "occnurbscurve-to-jsonstring"]], "OCCNurbsCurve.to_obj": [[420, "occnurbscurve-to-obj"]], "OCCNurbsCurve.to_points": [[421, "occnurbscurve-to-points"]], "OCCNurbsCurve.to_polygon": [[422, "occnurbscurve-to-polygon"]], "OCCNurbsCurve.to_polyline": [[423, "occnurbscurve-to-polyline"]], "OCCNurbsCurve.to_step": [[424, "occnurbscurve-to-step"]], "OCCNurbsCurve.transform": [[425, "occnurbscurve-transform"]], "OCCNurbsCurve.transformed": [[426, "occnurbscurve-transformed"]], "OCCNurbsCurve.translate": [[427, "occnurbscurve-translate"]], "OCCNurbsCurve.translated": [[428, "occnurbscurve-translated"]], "OCCNurbsCurve.trim": [[429, "occnurbscurve-trim"]], "OCCNurbsCurve.validate_data": [[430, "occnurbscurve-validate-data"]], "OCCNurbsSurface": [[431, "occnurbssurface"]], "OCCNurbsSurface.ToString": [[432, "occnurbssurface-tostring"]], "OCCNurbsSurface.aabb": [[433, "occnurbssurface-aabb"]], "OCCNurbsSurface.boundary": [[434, "occnurbssurface-boundary"]], "OCCNurbsSurface.closest_point": [[435, "occnurbssurface-closest-point"]], "OCCNurbsSurface.compute_aabb": [[436, "occnurbssurface-compute-aabb"]], "OCCNurbsSurface.compute_obb": [[437, "occnurbssurface-compute-obb"]], "OCCNurbsSurface.copy": [[438, "occnurbssurface-copy"]], "OCCNurbsSurface.curvature_at": [[439, "occnurbssurface-curvature-at"]], "OCCNurbsSurface.frame_at": [[440, "occnurbssurface-frame-at"]], "OCCNurbsSurface.from_extrusion": [[441, "occnurbssurface-from-extrusion"]], "OCCNurbsSurface.from_face": [[442, "occnurbssurface-from-face"]], "OCCNurbsSurface.from_fill": [[443, "occnurbssurface-from-fill"]], "OCCNurbsSurface.from_interpolation": [[444, "occnurbssurface-from-interpolation"]], "OCCNurbsSurface.from_json": [[445, "occnurbssurface-from-json"]], "OCCNurbsSurface.from_jsonstring": [[446, "occnurbssurface-from-jsonstring"]], "OCCNurbsSurface.from_meshgrid": [[447, "occnurbssurface-from-meshgrid"]], "OCCNurbsSurface.from_native": [[448, "occnurbssurface-from-native"]], "OCCNurbsSurface.from_obj": [[449, "occnurbssurface-from-obj"]], "OCCNurbsSurface.from_occ": [[450, "occnurbssurface-from-occ"]], "OCCNurbsSurface.from_parameters": [[451, "occnurbssurface-from-parameters"]], "OCCNurbsSurface.from_plane": [[452, "occnurbssurface-from-plane"]], "OCCNurbsSurface.from_points": [[453, "occnurbssurface-from-points"]], "OCCNurbsSurface.from_step": [[454, "occnurbssurface-from-step"]], "OCCNurbsSurface.gaussian_curvature_at": [[455, "occnurbssurface-gaussian-curvature-at"]], "OCCNurbsSurface.intersections_with_curve": [[456, "occnurbssurface-intersections-with-curve"]], "OCCNurbsSurface.intersections_with_line": [[457, "occnurbssurface-intersections-with-line"]], "OCCNurbsSurface.intersections_with_plane": [[458, "occnurbssurface-intersections-with-plane"]], "OCCNurbsSurface.isocurve_u": [[459, "occnurbssurface-isocurve-u"]], "OCCNurbsSurface.isocurve_v": [[460, "occnurbssurface-isocurve-v"]], "OCCNurbsSurface.mean_curvature_at": [[461, "occnurbssurface-mean-curvature-at"]], "OCCNurbsSurface.normal_at": [[462, "occnurbssurface-normal-at"]], "OCCNurbsSurface.obb": [[463, "occnurbssurface-obb"]], "OCCNurbsSurface.point_at": [[464, "occnurbssurface-point-at"]], "OCCNurbsSurface.pointgrid": [[465, "occnurbssurface-pointgrid"]], "OCCNurbsSurface.rotate": [[466, "occnurbssurface-rotate"]], "OCCNurbsSurface.rotated": [[467, "occnurbssurface-rotated"]], "OCCNurbsSurface.scale": [[468, "occnurbssurface-scale"]], "OCCNurbsSurface.scaled": [[469, "occnurbssurface-scaled"]], "OCCNurbsSurface.sha256": [[470, "occnurbssurface-sha256"]], "OCCNurbsSurface.space_u": [[471, "occnurbssurface-space-u"]], "OCCNurbsSurface.space_v": [[472, "occnurbssurface-space-v"]], "OCCNurbsSurface.to_brep": [[473, "occnurbssurface-to-brep"]], "OCCNurbsSurface.to_json": [[474, "occnurbssurface-to-json"]], "OCCNurbsSurface.to_jsonstring": [[475, "occnurbssurface-to-jsonstring"]], "OCCNurbsSurface.to_mesh": [[476, "occnurbssurface-to-mesh"]], "OCCNurbsSurface.to_polyhedron": [[477, "occnurbssurface-to-polyhedron"]], "OCCNurbsSurface.to_quads": [[478, "occnurbssurface-to-quads"]], "OCCNurbsSurface.to_step": [[479, "occnurbssurface-to-step"]], "OCCNurbsSurface.to_tesselation": [[480, "occnurbssurface-to-tesselation"]], "OCCNurbsSurface.to_triangles": [[481, "occnurbssurface-to-triangles"]], "OCCNurbsSurface.to_vertices_and_faces": [[482, "occnurbssurface-to-vertices-and-faces"]], "OCCNurbsSurface.transform": [[483, "occnurbssurface-transform"]], "OCCNurbsSurface.transformed": [[484, "occnurbssurface-transformed"]], "OCCNurbsSurface.translate": [[485, "occnurbssurface-translate"]], "OCCNurbsSurface.translated": [[486, "occnurbssurface-translated"]], "OCCNurbsSurface.validate_data": [[487, "occnurbssurface-validate-data"]], "OCCRevolutionSurface": [[488, "occrevolutionsurface"]], "OCCRevolutionSurface.ToString": [[489, "occrevolutionsurface-tostring"]], "OCCRevolutionSurface.aabb": [[490, "occrevolutionsurface-aabb"]], "OCCRevolutionSurface.boundary": [[491, "occrevolutionsurface-boundary"]], "OCCRevolutionSurface.closest_point": [[492, "occrevolutionsurface-closest-point"]], "OCCRevolutionSurface.compute": [[493, "occrevolutionsurface-compute"]], "OCCRevolutionSurface.compute_aabb": [[494, "occrevolutionsurface-compute-aabb"]], "OCCRevolutionSurface.compute_obb": [[495, "occrevolutionsurface-compute-obb"]], "OCCRevolutionSurface.copy": [[496, "occrevolutionsurface-copy"]], "OCCRevolutionSurface.curvature_at": [[497, "occrevolutionsurface-curvature-at"]], "OCCRevolutionSurface.frame_at": [[498, "occrevolutionsurface-frame-at"]], "OCCRevolutionSurface.from_face": [[499, "occrevolutionsurface-from-face"]], "OCCRevolutionSurface.from_json": [[500, "occrevolutionsurface-from-json"]], "OCCRevolutionSurface.from_jsonstring": [[501, "occrevolutionsurface-from-jsonstring"]], "OCCRevolutionSurface.from_obj": [[502, "occrevolutionsurface-from-obj"]], "OCCRevolutionSurface.from_occ": [[503, "occrevolutionsurface-from-occ"]], "OCCRevolutionSurface.from_plane": [[504, "occrevolutionsurface-from-plane"]], "OCCRevolutionSurface.from_step": [[505, "occrevolutionsurface-from-step"]], "OCCRevolutionSurface.gaussian_curvature_at": [[506, "occrevolutionsurface-gaussian-curvature-at"]], "OCCRevolutionSurface.intersections_with_curve": [[507, "occrevolutionsurface-intersections-with-curve"]], "OCCRevolutionSurface.intersections_with_line": [[508, "occrevolutionsurface-intersections-with-line"]], "OCCRevolutionSurface.intersections_with_plane": [[509, "occrevolutionsurface-intersections-with-plane"]], "OCCRevolutionSurface.isocurve_u": [[510, "occrevolutionsurface-isocurve-u"]], "OCCRevolutionSurface.isocurve_v": [[511, "occrevolutionsurface-isocurve-v"]], "OCCRevolutionSurface.mean_curvature_at": [[512, "occrevolutionsurface-mean-curvature-at"]], "OCCRevolutionSurface.normal_at": [[513, "occrevolutionsurface-normal-at"]], "OCCRevolutionSurface.obb": [[514, "occrevolutionsurface-obb"]], "OCCRevolutionSurface.point_at": [[515, "occrevolutionsurface-point-at"]], "OCCRevolutionSurface.pointgrid": [[516, "occrevolutionsurface-pointgrid"]], "OCCRevolutionSurface.rotate": [[517, "occrevolutionsurface-rotate"]], "OCCRevolutionSurface.rotated": [[518, "occrevolutionsurface-rotated"]], "OCCRevolutionSurface.scale": [[519, "occrevolutionsurface-scale"]], "OCCRevolutionSurface.scaled": [[520, "occrevolutionsurface-scaled"]], "OCCRevolutionSurface.sha256": [[521, "occrevolutionsurface-sha256"]], "OCCRevolutionSurface.space_u": [[522, "occrevolutionsurface-space-u"]], "OCCRevolutionSurface.space_v": [[523, "occrevolutionsurface-space-v"]], "OCCRevolutionSurface.to_brep": [[524, "occrevolutionsurface-to-brep"]], "OCCRevolutionSurface.to_json": [[525, "occrevolutionsurface-to-json"]], "OCCRevolutionSurface.to_jsonstring": [[526, "occrevolutionsurface-to-jsonstring"]], "OCCRevolutionSurface.to_mesh": [[527, "occrevolutionsurface-to-mesh"]], "OCCRevolutionSurface.to_polyhedron": [[528, "occrevolutionsurface-to-polyhedron"]], "OCCRevolutionSurface.to_quads": [[529, "occrevolutionsurface-to-quads"]], "OCCRevolutionSurface.to_step": [[530, "occrevolutionsurface-to-step"]], "OCCRevolutionSurface.to_tesselation": [[531, "occrevolutionsurface-to-tesselation"]], "OCCRevolutionSurface.to_triangles": [[532, "occrevolutionsurface-to-triangles"]], "OCCRevolutionSurface.to_vertices_and_faces": [[533, "occrevolutionsurface-to-vertices-and-faces"]], "OCCRevolutionSurface.transform": [[534, "occrevolutionsurface-transform"]], "OCCRevolutionSurface.transformed": [[535, "occrevolutionsurface-transformed"]], "OCCRevolutionSurface.translate": [[536, "occrevolutionsurface-translate"]], "OCCRevolutionSurface.translated": [[537, "occrevolutionsurface-translated"]], "OCCRevolutionSurface.validate_data": [[538, "occrevolutionsurface-validate-data"]], "OCCSurface": [[539, "occsurface"]], "OCCSurface.ToString": [[540, "occsurface-tostring"]], "OCCSurface.aabb": [[541, "occsurface-aabb"]], "OCCSurface.boundary": [[542, "occsurface-boundary"]], "OCCSurface.closest_point": [[543, "occsurface-closest-point"]], "OCCSurface.compute_aabb": [[544, "occsurface-compute-aabb"]], "OCCSurface.compute_obb": [[545, "occsurface-compute-obb"]], "OCCSurface.copy": [[546, "occsurface-copy"]], "OCCSurface.curvature_at": [[547, "occsurface-curvature-at"]], "OCCSurface.frame_at": [[548, "occsurface-frame-at"]], "OCCSurface.from_face": [[549, "occsurface-from-face"]], "OCCSurface.from_json": [[550, "occsurface-from-json"]], "OCCSurface.from_jsonstring": [[551, "occsurface-from-jsonstring"]], "OCCSurface.from_obj": [[552, "occsurface-from-obj"]], "OCCSurface.from_occ": [[553, "occsurface-from-occ"]], "OCCSurface.from_plane": [[554, "occsurface-from-plane"]], "OCCSurface.from_step": [[555, "occsurface-from-step"]], "OCCSurface.gaussian_curvature_at": [[556, "occsurface-gaussian-curvature-at"]], "OCCSurface.intersections_with_curve": [[557, "occsurface-intersections-with-curve"]], "OCCSurface.intersections_with_line": [[558, "occsurface-intersections-with-line"]], "OCCSurface.intersections_with_plane": [[559, "occsurface-intersections-with-plane"]], "OCCSurface.isocurve_u": [[560, "occsurface-isocurve-u"]], "OCCSurface.isocurve_v": [[561, "occsurface-isocurve-v"]], "OCCSurface.mean_curvature_at": [[562, "occsurface-mean-curvature-at"]], "OCCSurface.normal_at": [[563, "occsurface-normal-at"]], "OCCSurface.obb": [[564, "occsurface-obb"]], "OCCSurface.point_at": [[565, "occsurface-point-at"]], "OCCSurface.pointgrid": [[566, "occsurface-pointgrid"]], "OCCSurface.rotate": [[567, "occsurface-rotate"]], "OCCSurface.rotated": [[568, "occsurface-rotated"]], "OCCSurface.scale": [[569, "occsurface-scale"]], "OCCSurface.scaled": [[570, "occsurface-scaled"]], "OCCSurface.sha256": [[571, "occsurface-sha256"]], "OCCSurface.space_u": [[572, "occsurface-space-u"]], "OCCSurface.space_v": [[573, "occsurface-space-v"]], "OCCSurface.to_brep": [[574, "occsurface-to-brep"]], "OCCSurface.to_json": [[575, "occsurface-to-json"]], "OCCSurface.to_jsonstring": [[576, "occsurface-to-jsonstring"]], "OCCSurface.to_mesh": [[577, "occsurface-to-mesh"]], "OCCSurface.to_polyhedron": [[578, "occsurface-to-polyhedron"]], "OCCSurface.to_quads": [[579, "occsurface-to-quads"]], "OCCSurface.to_step": [[580, "occsurface-to-step"]], "OCCSurface.to_tesselation": [[581, "occsurface-to-tesselation"]], "OCCSurface.to_triangles": [[582, "occsurface-to-triangles"]], "OCCSurface.to_vertices_and_faces": [[583, "occsurface-to-vertices-and-faces"]], "OCCSurface.transform": [[584, "occsurface-transform"]], "OCCSurface.transformed": [[585, "occsurface-transformed"]], "OCCSurface.translate": [[586, "occsurface-translate"]], "OCCSurface.translated": [[587, "occsurface-translated"]], "OCCSurface.validate_data": [[588, "occsurface-validate-data"]], "Examples": [[589, "examples"]], "Explore Brep Topology": [[590, "explore-brep-topology"]], "Add a Fillet to the Edges of a Brep": [[591, "add-a-fillet-to-the-edges-of-a-brep"]], "Brep Shape From Booleans": [[592, "brep-shape-from-booleans"]], "Brep From Mesh": [[593, "brep-from-mesh"]], "Find the Overlap Between Two Breps": [[594, "find-the-overlap-between-two-breps"]], "Slice a Brep With a Plane": [[595, "slice-a-brep-with-a-plane"]], "Split a Brep With a Plane": [[596, "split-a-brep-with-a-plane"]], "Trim a Brep With a Plane": [[597, "trim-a-brep-with-a-plane"]], "Brep with Hole": [[598, "brep-with-hole"]], "Brep with Holes": [[599, "brep-with-holes"]], "Breps": [[600, "breps"]], "Curve Closest Parameters Curve": [[601, "curve-closest-parameters-curve"]], "Curve Closest Point": [[602, "curve-closest-point"]], "Curve Comparison 1": [[603, "curve-comparison-1"]], "Curve Comparison 2": [[604, "curve-comparison-2"]], "Curve Divide": [[605, "curve-divide"]], "Curve From Circle": [[606, "curve-from-circle"]], "Curve From Interpolation": [[607, "curve-from-interpolation"]], "Curve From Line": [[608, "curve-from-line"]], "Curve From Parameters": [[609, "curve-from-parameters"]], "Curve From Control Points": [[610, "curve-from-control-points"]], "Curve Joining": [[611, "curve-joining"]], "Curve Segmentation": [[612, "curve-segmentation"]], "Surface Axis-Aligned Bounding Box": [[615, "surface-axis-aligned-bounding-box"]], "Surface Frames": [[616, "surface-frames"]], "Surface From Extrusion 1": [[617, "surface-from-extrusion-1"]], "Surface From Extrusion 2": [[618, "surface-from-extrusion-2"]], "Surface From Fill": [[619, "surface-from-fill"]], "Surface From Meshgrid": [[620, "surface-from-meshgrid"]], "Surface From Parameters": [[621, "surface-from-parameters"]], "Surface From Points": [[622, "surface-from-points"]], "Surface Intersections With Line": [[623, "surface-intersections-with-line"]], "Surface Isocurves": [[624, "surface-isocurves"]], "Surface JSON Data": [[625, "surface-json-data"]], "Surface With Random Control Points": [[626, "surface-with-random-control-points"]], "Surface Points Over UV Space": [[627, "surface-points-over-uv-space"]], "COMPAS OCC": [[628, "compas-occ"]], "Table of Contents": [[628, "table-of-contents"]], "Indices and tables": [[628, "indices-and-tables"]], "References": [[628, "references"]], "Installation": [[629, "installation"]], "Stable": [[629, "stable"]], "Development": [[629, "development"]], "License": [[630, "license"]], "Tutorial": [[631, "tutorial"]], "Working with Curves": [[631, "working-with-curves"]], "Working with Surfaces": [[631, "working-with-surfaces"]], "Working with Breps": [[631, "working-with-breps"]], "Visualisation": [[631, "visualisation"]], "Using the plugin system": [[631, "using-the-plugin-system"]]}, "indexentries": {"occbrep (class in compas_occ.brep)": [[7, "compas_occ.brep.OCCBrep"]], "tostring() (compas_occ.brep.occbrep method)": [[8, "compas_occ.brep.OCCBrep.ToString"]], "check() (compas_occ.brep.occbrep method)": [[9, "compas_occ.brep.OCCBrep.check"]], "compute_aabb() (compas_occ.brep.occbrep method)": [[10, "compas_occ.brep.OCCBrep.compute_aabb"]], "compute_obb() (compas_occ.brep.occbrep method)": [[11, "compas_occ.brep.OCCBrep.compute_obb"]], "contains() (compas_occ.brep.occbrep method)": [[12, "compas_occ.brep.OCCBrep.contains"]], "contours() (compas_occ.brep.occbrep method)": [[13, "compas_occ.brep.OCCBrep.contours"]], "copy() (compas_occ.brep.occbrep method)": [[14, "compas_occ.brep.OCCBrep.copy"]], "cull_unused_edges() (compas_occ.brep.occbrep method)": [[15, "compas_occ.brep.OCCBrep.cull_unused_edges"]], "cull_unused_faces() (compas_occ.brep.occbrep method)": [[16, "compas_occ.brep.OCCBrep.cull_unused_faces"]], "cull_unused_loops() (compas_occ.brep.occbrep method)": [[17, "compas_occ.brep.OCCBrep.cull_unused_loops"]], "cull_unused_vertices() (compas_occ.brep.occbrep method)": [[18, "compas_occ.brep.OCCBrep.cull_unused_vertices"]], "edge_faces() (compas_occ.brep.occbrep method)": [[19, "compas_occ.brep.OCCBrep.edge_faces"]], "edge_loop() (compas_occ.brep.occbrep method)": [[20, "compas_occ.brep.OCCBrep.edge_loop"]], "edge_loops() (compas_occ.brep.occbrep method)": [[21, "compas_occ.brep.OCCBrep.edge_loops"]], "fillet() (compas_occ.brep.occbrep method)": [[22, "compas_occ.brep.OCCBrep.fillet"]], "filleted() (compas_occ.brep.occbrep method)": [[23, "compas_occ.brep.OCCBrep.filleted"]], "fix() (compas_occ.brep.occbrep method)": [[24, "compas_occ.brep.OCCBrep.fix"]], "from_boolean_difference() (compas_occ.brep.occbrep class method)": [[25, "compas_occ.brep.OCCBrep.from_boolean_difference"]], "from_boolean_intersection() (compas_occ.brep.occbrep class method)": [[26, "compas_occ.brep.OCCBrep.from_boolean_intersection"]], "from_boolean_union() (compas_occ.brep.occbrep class method)": [[27, "compas_occ.brep.OCCBrep.from_boolean_union"]], "from_box() (compas_occ.brep.occbrep class method)": [[28, "compas_occ.brep.OCCBrep.from_box"]], "from_brepfaces() (compas_occ.brep.occbrep class method)": [[29, "compas_occ.brep.OCCBrep.from_brepfaces"]], "from_breps() (compas_occ.brep.occbrep class method)": [[30, "compas_occ.brep.OCCBrep.from_breps"]], "from_cone() (compas_occ.brep.occbrep class method)": [[31, "compas_occ.brep.OCCBrep.from_cone"]], "from_curves() (compas_occ.brep.occbrep class method)": [[32, "compas_occ.brep.OCCBrep.from_curves"]], "from_cylinder() (compas_occ.brep.occbrep class method)": [[33, "compas_occ.brep.OCCBrep.from_cylinder"]], "from_extrusion() (compas_occ.brep.occbrep class method)": [[34, "compas_occ.brep.OCCBrep.from_extrusion"]], "from_iges() (compas_occ.brep.occbrep class method)": [[35, "compas_occ.brep.OCCBrep.from_iges"]], "from_json() (compas_occ.brep.occbrep class method)": [[36, "compas_occ.brep.OCCBrep.from_json"]], "from_jsonstring() (compas_occ.brep.occbrep class method)": [[37, "compas_occ.brep.OCCBrep.from_jsonstring"]], "from_loft() (compas_occ.brep.occbrep class method)": [[38, "compas_occ.brep.OCCBrep.from_loft"]], "from_mesh() (compas_occ.brep.occbrep class method)": [[39, "compas_occ.brep.OCCBrep.from_mesh"]], "from_native() (compas_occ.brep.occbrep class method)": [[40, "compas_occ.brep.OCCBrep.from_native"]], "from_pipe() (compas_occ.brep.occbrep class method)": [[41, "compas_occ.brep.OCCBrep.from_pipe"]], "from_plane() (compas_occ.brep.occbrep class method)": [[42, "compas_occ.brep.OCCBrep.from_plane"]], "from_planes() (compas_occ.brep.occbrep class method)": [[43, "compas_occ.brep.OCCBrep.from_planes"]], "from_polygons() (compas_occ.brep.occbrep class method)": [[44, "compas_occ.brep.OCCBrep.from_polygons"]], "from_shape() (compas_occ.brep.occbrep class method)": [[45, "compas_occ.brep.OCCBrep.from_shape"]], "from_sphere() (compas_occ.brep.occbrep class method)": [[46, "compas_occ.brep.OCCBrep.from_sphere"]], "from_step() (compas_occ.brep.occbrep class method)": [[47, "compas_occ.brep.OCCBrep.from_step"]], "from_surface() (compas_occ.brep.occbrep class method)": [[48, "compas_occ.brep.OCCBrep.from_surface"]], "from_sweep() (compas_occ.brep.occbrep class method)": [[49, "compas_occ.brep.OCCBrep.from_sweep"]], "from_torus() (compas_occ.brep.occbrep class method)": [[50, "compas_occ.brep.OCCBrep.from_torus"]], "heal() (compas_occ.brep.occbrep method)": [[51, "compas_occ.brep.OCCBrep.heal"]], "make_solid() (compas_occ.brep.occbrep method)": [[52, "compas_occ.brep.OCCBrep.make_solid"]], "overlap() (compas_occ.brep.occbrep method)": [[53, "compas_occ.brep.OCCBrep.overlap"]], "rotate() (compas_occ.brep.occbrep method)": [[54, "compas_occ.brep.OCCBrep.rotate"]], "rotated() (compas_occ.brep.occbrep method)": [[55, "compas_occ.brep.OCCBrep.rotated"]], "scale() (compas_occ.brep.occbrep method)": [[56, "compas_occ.brep.OCCBrep.scale"]], "scaled() (compas_occ.brep.occbrep method)": [[57, "compas_occ.brep.OCCBrep.scaled"]], "sew() (compas_occ.brep.occbrep method)": [[58, "compas_occ.brep.OCCBrep.sew"]], "sha256() (compas_occ.brep.occbrep method)": [[59, "compas_occ.brep.OCCBrep.sha256"]], "simplify() (compas_occ.brep.occbrep method)": [[60, "compas_occ.brep.OCCBrep.simplify"]], "slice() (compas_occ.brep.occbrep method)": [[61, "compas_occ.brep.OCCBrep.slice"]], "split() (compas_occ.brep.occbrep method)": [[62, "compas_occ.brep.OCCBrep.split"]], "to_iges() (compas_occ.brep.occbrep method)": [[63, "compas_occ.brep.OCCBrep.to_iges"]], "to_json() (compas_occ.brep.occbrep method)": [[64, "compas_occ.brep.OCCBrep.to_json"]], "to_jsonstring() (compas_occ.brep.occbrep method)": [[65, "compas_occ.brep.OCCBrep.to_jsonstring"]], "to_meshes() (compas_occ.brep.occbrep method)": [[66, "compas_occ.brep.OCCBrep.to_meshes"]], "to_polygons() (compas_occ.brep.occbrep method)": [[67, "compas_occ.brep.OCCBrep.to_polygons"]], "to_step() (compas_occ.brep.occbrep method)": [[68, "compas_occ.brep.OCCBrep.to_step"]], "to_stl() (compas_occ.brep.occbrep method)": [[69, "compas_occ.brep.OCCBrep.to_stl"]], "to_tesselation() (compas_occ.brep.occbrep method)": [[70, "compas_occ.brep.OCCBrep.to_tesselation"]], "to_viewmesh() (compas_occ.brep.occbrep method)": [[71, "compas_occ.brep.OCCBrep.to_viewmesh"]], "transform() (compas_occ.brep.occbrep method)": [[72, "compas_occ.brep.OCCBrep.transform"]], "transformed() (compas_occ.brep.occbrep method)": [[73, "compas_occ.brep.OCCBrep.transformed"]], "translate() (compas_occ.brep.occbrep method)": [[74, "compas_occ.brep.OCCBrep.translate"]], "translated() (compas_occ.brep.occbrep method)": [[75, "compas_occ.brep.OCCBrep.translated"]], "trim() (compas_occ.brep.occbrep method)": [[76, "compas_occ.brep.OCCBrep.trim"]], "trimmed() (compas_occ.brep.occbrep method)": [[77, "compas_occ.brep.OCCBrep.trimmed"]], "validate_data() (compas_occ.brep.occbrep class method)": [[78, "compas_occ.brep.OCCBrep.validate_data"]], "vertex_edges() (compas_occ.brep.occbrep method)": [[79, "compas_occ.brep.OCCBrep.vertex_edges"]], "vertex_faces() (compas_occ.brep.occbrep method)": [[80, "compas_occ.brep.OCCBrep.vertex_faces"]], "vertex_neighbors() (compas_occ.brep.occbrep method)": [[81, "compas_occ.brep.OCCBrep.vertex_neighbors"]], "occbrepedge (class in compas_occ.brep)": [[82, "compas_occ.brep.OCCBrepEdge"]], "tostring() (compas_occ.brep.occbrepedge method)": [[83, "compas_occ.brep.OCCBrepEdge.ToString"]], "copy() (compas_occ.brep.occbrepedge method)": [[84, "compas_occ.brep.OCCBrepEdge.copy"]], "from_circle() (compas_occ.brep.occbrepedge class method)": [[85, "compas_occ.brep.OCCBrepEdge.from_circle"]], "from_curve() (compas_occ.brep.occbrepedge class method)": [[86, "compas_occ.brep.OCCBrepEdge.from_curve"]], "from_ellipse() (compas_occ.brep.occbrepedge class method)": [[87, "compas_occ.brep.OCCBrepEdge.from_ellipse"]], "from_json() (compas_occ.brep.occbrepedge class method)": [[88, "compas_occ.brep.OCCBrepEdge.from_json"]], "from_jsonstring() (compas_occ.brep.occbrepedge class method)": [[89, "compas_occ.brep.OCCBrepEdge.from_jsonstring"]], "from_line() (compas_occ.brep.occbrepedge class method)": [[90, "compas_occ.brep.OCCBrepEdge.from_line"]], "from_point_point() (compas_occ.brep.occbrepedge class method)": [[91, "compas_occ.brep.OCCBrepEdge.from_point_point"]], "from_points() (compas_occ.brep.occbrepedge class method)": [[92, "compas_occ.brep.OCCBrepEdge.from_points"]], "from_vertex_vertex() (compas_occ.brep.occbrepedge class method)": [[93, "compas_occ.brep.OCCBrepEdge.from_vertex_vertex"]], "from_vertices() (compas_occ.brep.occbrepedge class method)": [[94, "compas_occ.brep.OCCBrepEdge.from_vertices"]], "is_equal() (compas_occ.brep.occbrepedge method)": [[95, "compas_occ.brep.OCCBrepEdge.is_equal"]], "is_same() (compas_occ.brep.occbrepedge method)": [[96, "compas_occ.brep.OCCBrepEdge.is_same"]], "sha256() (compas_occ.brep.occbrepedge method)": [[97, "compas_occ.brep.OCCBrepEdge.sha256"]], "to_bezier() (compas_occ.brep.occbrepedge method)": [[98, "compas_occ.brep.OCCBrepEdge.to_bezier"]], "to_bspline() (compas_occ.brep.occbrepedge method)": [[99, "compas_occ.brep.OCCBrepEdge.to_bspline"]], "to_circle() (compas_occ.brep.occbrepedge method)": [[100, "compas_occ.brep.OCCBrepEdge.to_circle"]], "to_curve() (compas_occ.brep.occbrepedge method)": [[101, "compas_occ.brep.OCCBrepEdge.to_curve"]], "to_ellipse() (compas_occ.brep.occbrepedge method)": [[102, "compas_occ.brep.OCCBrepEdge.to_ellipse"]], "to_hyperbola() (compas_occ.brep.occbrepedge method)": [[103, "compas_occ.brep.OCCBrepEdge.to_hyperbola"]], "to_json() (compas_occ.brep.occbrepedge method)": [[104, "compas_occ.brep.OCCBrepEdge.to_json"]], "to_jsonstring() (compas_occ.brep.occbrepedge method)": [[105, "compas_occ.brep.OCCBrepEdge.to_jsonstring"]], "to_line() (compas_occ.brep.occbrepedge method)": [[106, "compas_occ.brep.OCCBrepEdge.to_line"]], "to_parabola() (compas_occ.brep.occbrepedge method)": [[107, "compas_occ.brep.OCCBrepEdge.to_parabola"]], "validate_data() (compas_occ.brep.occbrepedge class method)": [[108, "compas_occ.brep.OCCBrepEdge.validate_data"]], "occbrepface (class in compas_occ.brep)": [[109, "compas_occ.brep.OCCBrepFace"]], "tostring() (compas_occ.brep.occbrepface method)": [[110, "compas_occ.brep.OCCBrepFace.ToString"]], "add_loop() (compas_occ.brep.occbrepface method)": [[111, "compas_occ.brep.OCCBrepFace.add_loop"]], "add_loops() (compas_occ.brep.occbrepface method)": [[112, "compas_occ.brep.OCCBrepFace.add_loops"]], "adjacent_faces() (compas_occ.brep.occbrepface method)": [[113, "compas_occ.brep.OCCBrepFace.adjacent_faces"]], "as_brep() (compas_occ.brep.occbrepface method)": [[114, "compas_occ.brep.OCCBrepFace.as_brep"]], "copy() (compas_occ.brep.occbrepface method)": [[115, "compas_occ.brep.OCCBrepFace.copy"]], "fix() (compas_occ.brep.occbrepface method)": [[116, "compas_occ.brep.OCCBrepFace.fix"]], "from_cone() (compas_occ.brep.occbrepface class method)": [[117, "compas_occ.brep.OCCBrepFace.from_cone"]], "from_cylinder() (compas_occ.brep.occbrepface class method)": [[118, "compas_occ.brep.OCCBrepFace.from_cylinder"]], "from_json() (compas_occ.brep.occbrepface class method)": [[119, "compas_occ.brep.OCCBrepFace.from_json"]], "from_jsonstring() (compas_occ.brep.occbrepface class method)": [[120, "compas_occ.brep.OCCBrepFace.from_jsonstring"]], "from_plane() (compas_occ.brep.occbrepface class method)": [[121, "compas_occ.brep.OCCBrepFace.from_plane"]], "from_polygon() (compas_occ.brep.occbrepface class method)": [[122, "compas_occ.brep.OCCBrepFace.from_polygon"]], "from_sphere() (compas_occ.brep.occbrepface class method)": [[123, "compas_occ.brep.OCCBrepFace.from_sphere"]], "from_surface() (compas_occ.brep.occbrepface class method)": [[124, "compas_occ.brep.OCCBrepFace.from_surface"]], "from_torus() (compas_occ.brep.occbrepface class method)": [[125, "compas_occ.brep.OCCBrepFace.from_torus"]], "is_equal() (compas_occ.brep.occbrepface method)": [[126, "compas_occ.brep.OCCBrepFace.is_equal"]], "is_same() (compas_occ.brep.occbrepface method)": [[127, "compas_occ.brep.OCCBrepFace.is_same"]], "is_valid() (compas_occ.brep.occbrepface method)": [[128, "compas_occ.brep.OCCBrepFace.is_valid"]], "sha256() (compas_occ.brep.occbrepface method)": [[129, "compas_occ.brep.OCCBrepFace.sha256"]], "to_cone() (compas_occ.brep.occbrepface method)": [[130, "compas_occ.brep.OCCBrepFace.to_cone"]], "to_cylinder() (compas_occ.brep.occbrepface method)": [[131, "compas_occ.brep.OCCBrepFace.to_cylinder"]], "to_json() (compas_occ.brep.occbrepface method)": [[132, "compas_occ.brep.OCCBrepFace.to_json"]], "to_jsonstring() (compas_occ.brep.occbrepface method)": [[133, "compas_occ.brep.OCCBrepFace.to_jsonstring"]], "to_plane() (compas_occ.brep.occbrepface method)": [[134, "compas_occ.brep.OCCBrepFace.to_plane"]], "to_polygon() (compas_occ.brep.occbrepface method)": [[135, "compas_occ.brep.OCCBrepFace.to_polygon"]], "to_sphere() (compas_occ.brep.occbrepface method)": [[136, "compas_occ.brep.OCCBrepFace.to_sphere"]], "to_torus() (compas_occ.brep.occbrepface method)": [[137, "compas_occ.brep.OCCBrepFace.to_torus"]], "try_get_nurbssurface() (compas_occ.brep.occbrepface method)": [[138, "compas_occ.brep.OCCBrepFace.try_get_nurbssurface"]], "validate_data() (compas_occ.brep.occbrepface class method)": [[139, "compas_occ.brep.OCCBrepFace.validate_data"]], "occbreploop (class in compas_occ.brep)": [[140, "compas_occ.brep.OCCBrepLoop"]], "tostring() (compas_occ.brep.occbreploop method)": [[141, "compas_occ.brep.OCCBrepLoop.ToString"]], "copy() (compas_occ.brep.occbreploop method)": [[142, "compas_occ.brep.OCCBrepLoop.copy"]], "fix() (compas_occ.brep.occbreploop method)": [[143, "compas_occ.brep.OCCBrepLoop.fix"]], "from_edges() (compas_occ.brep.occbreploop class method)": [[144, "compas_occ.brep.OCCBrepLoop.from_edges"]], "from_json() (compas_occ.brep.occbreploop class method)": [[145, "compas_occ.brep.OCCBrepLoop.from_json"]], "from_jsonstring() (compas_occ.brep.occbreploop class method)": [[146, "compas_occ.brep.OCCBrepLoop.from_jsonstring"]], "from_polygon() (compas_occ.brep.occbreploop class method)": [[147, "compas_occ.brep.OCCBrepLoop.from_polygon"]], "from_polyline() (compas_occ.brep.occbreploop class method)": [[148, "compas_occ.brep.OCCBrepLoop.from_polyline"]], "is_equal() (compas_occ.brep.occbreploop method)": [[149, "compas_occ.brep.OCCBrepLoop.is_equal"]], "is_same() (compas_occ.brep.occbreploop method)": [[150, "compas_occ.brep.OCCBrepLoop.is_same"]], "sha256() (compas_occ.brep.occbreploop method)": [[151, "compas_occ.brep.OCCBrepLoop.sha256"]], "to_json() (compas_occ.brep.occbreploop method)": [[152, "compas_occ.brep.OCCBrepLoop.to_json"]], "to_jsonstring() (compas_occ.brep.occbreploop method)": [[153, "compas_occ.brep.OCCBrepLoop.to_jsonstring"]], "validate_data() (compas_occ.brep.occbreploop class method)": [[154, "compas_occ.brep.OCCBrepLoop.validate_data"]], "occbrepvertex (class in compas_occ.brep)": [[155, "compas_occ.brep.OCCBrepVertex"]], "tostring() (compas_occ.brep.occbrepvertex method)": [[156, "compas_occ.brep.OCCBrepVertex.ToString"]], "copy() (compas_occ.brep.occbrepvertex method)": [[157, "compas_occ.brep.OCCBrepVertex.copy"]], "from_json() (compas_occ.brep.occbrepvertex class method)": [[158, "compas_occ.brep.OCCBrepVertex.from_json"]], "from_jsonstring() (compas_occ.brep.occbrepvertex class method)": [[159, "compas_occ.brep.OCCBrepVertex.from_jsonstring"]], "from_point() (compas_occ.brep.occbrepvertex class method)": [[160, "compas_occ.brep.OCCBrepVertex.from_point"]], "is_equal() (compas_occ.brep.occbrepvertex method)": [[161, "compas_occ.brep.OCCBrepVertex.is_equal"]], "is_same() (compas_occ.brep.occbrepvertex method)": [[162, "compas_occ.brep.OCCBrepVertex.is_same"]], "sha256() (compas_occ.brep.occbrepvertex method)": [[163, "compas_occ.brep.OCCBrepVertex.sha256"]], "to_json() (compas_occ.brep.occbrepvertex method)": [[164, "compas_occ.brep.OCCBrepVertex.to_json"]], "to_jsonstring() (compas_occ.brep.occbrepvertex method)": [[165, "compas_occ.brep.OCCBrepVertex.to_jsonstring"]], "validate_data() (compas_occ.brep.occbrepvertex class method)": [[166, "compas_occ.brep.OCCBrepVertex.validate_data"]], "array1_from_floats1() (in module compas_occ.conversions)": [[167, "compas_occ.conversions.array1_from_floats1"]], "array1_from_integers1() (in module compas_occ.conversions)": [[168, "compas_occ.conversions.array1_from_integers1"]], "array1_from_points1() (in module compas_occ.conversions)": [[169, "compas_occ.conversions.array1_from_points1"]], "array2_from_floats2() (in module compas_occ.conversions)": [[170, "compas_occ.conversions.array2_from_floats2"]], "array2_from_points2() (in module compas_occ.conversions)": [[171, "compas_occ.conversions.array2_from_points2"]], "ax2_to_compas() (in module compas_occ.conversions)": [[172, "compas_occ.conversions.ax2_to_compas"]], "ax3_to_compas() (in module compas_occ.conversions)": [[173, "compas_occ.conversions.ax3_to_compas"]], "axis_to_compas() (in module compas_occ.conversions)": [[174, "compas_occ.conversions.axis_to_compas"]], "axis_to_compas_vector() (in module compas_occ.conversions)": [[175, "compas_occ.conversions.axis_to_compas_vector"]], "axis_to_occ() (in module compas_occ.conversions)": [[176, "compas_occ.conversions.axis_to_occ"]], "bezier_to_compas() (in module compas_occ.conversions)": [[177, "compas_occ.conversions.bezier_to_compas"]], "bspline_to_compas() (in module compas_occ.conversions)": [[178, "compas_occ.conversions.bspline_to_compas"]], "circle_to_compas() (in module compas_occ.conversions)": [[179, "compas_occ.conversions.circle_to_compas"]], "circle_to_occ() (in module compas_occ.conversions)": [[180, "compas_occ.conversions.circle_to_occ"]], "compas_mesh_to_occ_shell() (in module compas_occ.conversions)": [[181, "compas_occ.conversions.compas_mesh_to_occ_shell"]], "compas_quadmesh_to_occ_shell() (in module compas_occ.conversions)": [[182, "compas_occ.conversions.compas_quadmesh_to_occ_shell"]], "compas_transformation_to_trsf() (in module compas_occ.conversions)": [[183, "compas_occ.conversions.compas_transformation_to_trsf"]], "compas_trimesh_to_occ_shell() (in module compas_occ.conversions)": [[184, "compas_occ.conversions.compas_trimesh_to_occ_shell"]], "cone_to_occ() (in module compas_occ.conversions)": [[185, "compas_occ.conversions.cone_to_occ"]], "cylinder_to_compas() (in module compas_occ.conversions)": [[186, "compas_occ.conversions.cylinder_to_compas"]], "cylinder_to_occ() (in module compas_occ.conversions)": [[187, "compas_occ.conversions.cylinder_to_occ"]], "direction_to_compas() (in module compas_occ.conversions)": [[188, "compas_occ.conversions.direction_to_compas"]], "direction_to_occ() (in module compas_occ.conversions)": [[189, "compas_occ.conversions.direction_to_occ"]], "ellipse_to_compas() (in module compas_occ.conversions)": [[190, "compas_occ.conversions.ellipse_to_compas"]], "ellipse_to_occ() (in module compas_occ.conversions)": [[191, "compas_occ.conversions.ellipse_to_occ"]], "floats2_from_array2() (in module compas_occ.conversions)": [[192, "compas_occ.conversions.floats2_from_array2"]], "frame_to_occ_ax2() (in module compas_occ.conversions)": [[193, "compas_occ.conversions.frame_to_occ_ax2"]], "frame_to_occ_ax3() (in module compas_occ.conversions)": [[194, "compas_occ.conversions.frame_to_occ_ax3"]], "harray1_from_points1() (in module compas_occ.conversions)": [[195, "compas_occ.conversions.harray1_from_points1"]], "hyperbola_to_compas() (in module compas_occ.conversions)": [[196, "compas_occ.conversions.hyperbola_to_compas"]], "line_to_compas() (in module compas_occ.conversions)": [[197, "compas_occ.conversions.line_to_compas"]], "line_to_occ() (in module compas_occ.conversions)": [[198, "compas_occ.conversions.line_to_occ"]], "location_to_compas() (in module compas_occ.conversions)": [[199, "compas_occ.conversions.location_to_compas"]], "ngon_to_face() (in module compas_occ.conversions)": [[200, "compas_occ.conversions.ngon_to_face"]], "parabola_to_compas() (in module compas_occ.conversions)": [[201, "compas_occ.conversions.parabola_to_compas"]], "plane_to_compas() (in module compas_occ.conversions)": [[202, "compas_occ.conversions.plane_to_compas"]], "plane_to_occ() (in module compas_occ.conversions)": [[203, "compas_occ.conversions.plane_to_occ"]], "plane_to_occ_ax2() (in module compas_occ.conversions)": [[204, "compas_occ.conversions.plane_to_occ_ax2"]], "plane_to_occ_ax3() (in module compas_occ.conversions)": [[205, "compas_occ.conversions.plane_to_occ_ax3"]], "point2d_to_compas() (in module compas_occ.conversions)": [[206, "compas_occ.conversions.point2d_to_compas"]], "point_to_compas() (in module compas_occ.conversions)": [[207, "compas_occ.conversions.point_to_compas"]], "point_to_occ() (in module compas_occ.conversions)": [[208, "compas_occ.conversions.point_to_occ"]], "points1_from_array1() (in module compas_occ.conversions)": [[209, "compas_occ.conversions.points1_from_array1"]], "points2_from_array2() (in module compas_occ.conversions)": [[210, "compas_occ.conversions.points2_from_array2"]], "quad_to_face() (in module compas_occ.conversions)": [[211, "compas_occ.conversions.quad_to_face"]], "sphere_to_compas() (in module compas_occ.conversions)": [[212, "compas_occ.conversions.sphere_to_compas"]], "sphere_to_occ() (in module compas_occ.conversions)": [[213, "compas_occ.conversions.sphere_to_occ"]], "torus_to_occ() (in module compas_occ.conversions)": [[214, "compas_occ.conversions.torus_to_occ"]], "triangle_to_face() (in module compas_occ.conversions)": [[215, "compas_occ.conversions.triangle_to_face"]], "vector2d_to_compas() (in module compas_occ.conversions)": [[216, "compas_occ.conversions.vector2d_to_compas"]], "vector_to_compas() (in module compas_occ.conversions)": [[217, "compas_occ.conversions.vector_to_compas"]], "vector_to_occ() (in module compas_occ.conversions)": [[218, "compas_occ.conversions.vector_to_occ"]], "occcurve (class in compas_occ.geometry)": [[219, "compas_occ.geometry.OCCCurve"]], "tostring() (compas_occ.geometry.occcurve method)": [[220, "compas_occ.geometry.OCCCurve.ToString"]], "aabb() (compas_occ.geometry.occcurve method)": [[221, "compas_occ.geometry.OCCCurve.aabb"]], "closest_parameters_curve() (compas_occ.geometry.occcurve method)": [[222, "compas_occ.geometry.OCCCurve.closest_parameters_curve"]], "closest_point() (compas_occ.geometry.occcurve method)": [[223, "compas_occ.geometry.OCCCurve.closest_point"]], "closest_points_curve() (compas_occ.geometry.occcurve method)": [[224, "compas_occ.geometry.OCCCurve.closest_points_curve"]], "compute_aabb() (compas_occ.geometry.occcurve method)": [[225, "compas_occ.geometry.OCCCurve.compute_aabb"]], "compute_obb() (compas_occ.geometry.occcurve method)": [[226, "compas_occ.geometry.OCCCurve.compute_obb"]], "copy() (compas_occ.geometry.occcurve method)": [[227, "compas_occ.geometry.OCCCurve.copy"]], "curvature_at() (compas_occ.geometry.occcurve method)": [[228, "compas_occ.geometry.OCCCurve.curvature_at"]], "divide() (compas_occ.geometry.occcurve method)": [[229, "compas_occ.geometry.OCCCurve.divide"]], "divide_by_count() (compas_occ.geometry.occcurve method)": [[230, "compas_occ.geometry.OCCCurve.divide_by_count"]], "divide_by_length() (compas_occ.geometry.occcurve method)": [[231, "compas_occ.geometry.OCCCurve.divide_by_length"]], "embedded() (compas_occ.geometry.occcurve method)": [[232, "compas_occ.geometry.OCCCurve.embedded"]], "fair() (compas_occ.geometry.occcurve method)": [[233, "compas_occ.geometry.OCCCurve.fair"]], "frame_at() (compas_occ.geometry.occcurve method)": [[234, "compas_occ.geometry.OCCCurve.frame_at"]], "from_json() (compas_occ.geometry.occcurve class method)": [[235, "compas_occ.geometry.OCCCurve.from_json"]], "from_jsonstring() (compas_occ.geometry.occcurve class method)": [[236, "compas_occ.geometry.OCCCurve.from_jsonstring"]], "from_obj() (compas_occ.geometry.occcurve class method)": [[237, "compas_occ.geometry.OCCCurve.from_obj"]], "from_occ() (compas_occ.geometry.occcurve class method)": [[238, "compas_occ.geometry.OCCCurve.from_occ"]], "from_step() (compas_occ.geometry.occcurve class method)": [[239, "compas_occ.geometry.OCCCurve.from_step"]], "length() (compas_occ.geometry.occcurve method)": [[240, "compas_occ.geometry.OCCCurve.length"]], "normal_at() (compas_occ.geometry.occcurve method)": [[241, "compas_occ.geometry.OCCCurve.normal_at"]], "offset() (compas_occ.geometry.occcurve method)": [[242, "compas_occ.geometry.OCCCurve.offset"]], "parameter_at_distance() (compas_occ.geometry.occcurve method)": [[243, "compas_occ.geometry.OCCCurve.parameter_at_distance"]], "point_at() (compas_occ.geometry.occcurve method)": [[244, "compas_occ.geometry.OCCCurve.point_at"]], "projected() (compas_occ.geometry.occcurve method)": [[245, "compas_occ.geometry.OCCCurve.projected"]], "reverse() (compas_occ.geometry.occcurve method)": [[246, "compas_occ.geometry.OCCCurve.reverse"]], "reversed() (compas_occ.geometry.occcurve method)": [[247, "compas_occ.geometry.OCCCurve.reversed"]], "rotate() (compas_occ.geometry.occcurve method)": [[248, "compas_occ.geometry.OCCCurve.rotate"]], "rotated() (compas_occ.geometry.occcurve method)": [[249, "compas_occ.geometry.OCCCurve.rotated"]], "scale() (compas_occ.geometry.occcurve method)": [[250, "compas_occ.geometry.OCCCurve.scale"]], "scaled() (compas_occ.geometry.occcurve method)": [[251, "compas_occ.geometry.OCCCurve.scaled"]], "sha256() (compas_occ.geometry.occcurve method)": [[252, "compas_occ.geometry.OCCCurve.sha256"]], "smooth() (compas_occ.geometry.occcurve method)": [[253, "compas_occ.geometry.OCCCurve.smooth"]], "split() (compas_occ.geometry.occcurve method)": [[254, "compas_occ.geometry.OCCCurve.split"]], "tangent_at() (compas_occ.geometry.occcurve method)": [[255, "compas_occ.geometry.OCCCurve.tangent_at"]], "to_json() (compas_occ.geometry.occcurve method)": [[256, "compas_occ.geometry.OCCCurve.to_json"]], "to_jsonstring() (compas_occ.geometry.occcurve method)": [[257, "compas_occ.geometry.OCCCurve.to_jsonstring"]], "to_obj() (compas_occ.geometry.occcurve method)": [[258, "compas_occ.geometry.OCCCurve.to_obj"]], "to_points() (compas_occ.geometry.occcurve method)": [[259, "compas_occ.geometry.OCCCurve.to_points"]], "to_polygon() (compas_occ.geometry.occcurve method)": [[260, "compas_occ.geometry.OCCCurve.to_polygon"]], "to_polyline() (compas_occ.geometry.occcurve method)": [[261, "compas_occ.geometry.OCCCurve.to_polyline"]], "to_step() (compas_occ.geometry.occcurve method)": [[262, "compas_occ.geometry.OCCCurve.to_step"]], "transform() (compas_occ.geometry.occcurve method)": [[263, "compas_occ.geometry.OCCCurve.transform"]], "transformed() (compas_occ.geometry.occcurve method)": [[264, "compas_occ.geometry.OCCCurve.transformed"]], "translate() (compas_occ.geometry.occcurve method)": [[265, "compas_occ.geometry.OCCCurve.translate"]], "translated() (compas_occ.geometry.occcurve method)": [[266, "compas_occ.geometry.OCCCurve.translated"]], "trim() (compas_occ.geometry.occcurve method)": [[267, "compas_occ.geometry.OCCCurve.trim"]], "validate_data() (compas_occ.geometry.occcurve class method)": [[268, "compas_occ.geometry.OCCCurve.validate_data"]], "occcurve2d (class in compas_occ.geometry)": [[269, "compas_occ.geometry.OCCCurve2d"]], "tostring() (compas_occ.geometry.occcurve2d method)": [[270, "compas_occ.geometry.OCCCurve2d.ToString"]], "aabb() (compas_occ.geometry.occcurve2d method)": [[271, "compas_occ.geometry.OCCCurve2d.aabb"]], "closest_point() (compas_occ.geometry.occcurve2d method)": [[272, "compas_occ.geometry.OCCCurve2d.closest_point"]], "compute_aabb() (compas_occ.geometry.occcurve2d method)": [[273, "compas_occ.geometry.OCCCurve2d.compute_aabb"]], "compute_obb() (compas_occ.geometry.occcurve2d method)": [[274, "compas_occ.geometry.OCCCurve2d.compute_obb"]], "copy() (compas_occ.geometry.occcurve2d method)": [[275, "compas_occ.geometry.OCCCurve2d.copy"]], "curvature_at() (compas_occ.geometry.occcurve2d method)": [[276, "compas_occ.geometry.OCCCurve2d.curvature_at"]], "divide_by_count() (compas_occ.geometry.occcurve2d method)": [[277, "compas_occ.geometry.OCCCurve2d.divide_by_count"]], "divide_by_length() (compas_occ.geometry.occcurve2d method)": [[278, "compas_occ.geometry.OCCCurve2d.divide_by_length"]], "fair() (compas_occ.geometry.occcurve2d method)": [[279, "compas_occ.geometry.OCCCurve2d.fair"]], "frame_at() (compas_occ.geometry.occcurve2d method)": [[280, "compas_occ.geometry.OCCCurve2d.frame_at"]], "from_json() (compas_occ.geometry.occcurve2d class method)": [[281, "compas_occ.geometry.OCCCurve2d.from_json"]], "from_jsonstring() (compas_occ.geometry.occcurve2d class method)": [[282, "compas_occ.geometry.OCCCurve2d.from_jsonstring"]], "from_obj() (compas_occ.geometry.occcurve2d class method)": [[283, "compas_occ.geometry.OCCCurve2d.from_obj"]], "from_occ() (compas_occ.geometry.occcurve2d class method)": [[284, "compas_occ.geometry.OCCCurve2d.from_occ"]], "from_step() (compas_occ.geometry.occcurve2d class method)": [[285, "compas_occ.geometry.OCCCurve2d.from_step"]], "length() (compas_occ.geometry.occcurve2d method)": [[286, "compas_occ.geometry.OCCCurve2d.length"]], "normal_at() (compas_occ.geometry.occcurve2d method)": [[287, "compas_occ.geometry.OCCCurve2d.normal_at"]], "offset() (compas_occ.geometry.occcurve2d method)": [[288, "compas_occ.geometry.OCCCurve2d.offset"]], "point_at() (compas_occ.geometry.occcurve2d method)": [[289, "compas_occ.geometry.OCCCurve2d.point_at"]], "reverse() (compas_occ.geometry.occcurve2d method)": [[290, "compas_occ.geometry.OCCCurve2d.reverse"]], "reversed() (compas_occ.geometry.occcurve2d method)": [[291, "compas_occ.geometry.OCCCurve2d.reversed"]], "rotate() (compas_occ.geometry.occcurve2d method)": [[292, "compas_occ.geometry.OCCCurve2d.rotate"]], "rotated() (compas_occ.geometry.occcurve2d method)": [[293, "compas_occ.geometry.OCCCurve2d.rotated"]], "scale() (compas_occ.geometry.occcurve2d method)": [[294, "compas_occ.geometry.OCCCurve2d.scale"]], "scaled() (compas_occ.geometry.occcurve2d method)": [[295, "compas_occ.geometry.OCCCurve2d.scaled"]], "sha256() (compas_occ.geometry.occcurve2d method)": [[296, "compas_occ.geometry.OCCCurve2d.sha256"]], "smooth() (compas_occ.geometry.occcurve2d method)": [[297, "compas_occ.geometry.OCCCurve2d.smooth"]], "split() (compas_occ.geometry.occcurve2d method)": [[298, "compas_occ.geometry.OCCCurve2d.split"]], "tangent_at() (compas_occ.geometry.occcurve2d method)": [[299, "compas_occ.geometry.OCCCurve2d.tangent_at"]], "to_json() (compas_occ.geometry.occcurve2d method)": [[300, "compas_occ.geometry.OCCCurve2d.to_json"]], "to_jsonstring() (compas_occ.geometry.occcurve2d method)": [[301, "compas_occ.geometry.OCCCurve2d.to_jsonstring"]], "to_obj() (compas_occ.geometry.occcurve2d method)": [[302, "compas_occ.geometry.OCCCurve2d.to_obj"]], "to_points() (compas_occ.geometry.occcurve2d method)": [[303, "compas_occ.geometry.OCCCurve2d.to_points"]], "to_polygon() (compas_occ.geometry.occcurve2d method)": [[304, "compas_occ.geometry.OCCCurve2d.to_polygon"]], "to_polyline() (compas_occ.geometry.occcurve2d method)": [[305, "compas_occ.geometry.OCCCurve2d.to_polyline"]], "to_step() (compas_occ.geometry.occcurve2d method)": [[306, "compas_occ.geometry.OCCCurve2d.to_step"]], "transform() (compas_occ.geometry.occcurve2d method)": [[307, "compas_occ.geometry.OCCCurve2d.transform"]], "transformed() (compas_occ.geometry.occcurve2d method)": [[308, "compas_occ.geometry.OCCCurve2d.transformed"]], "translate() (compas_occ.geometry.occcurve2d method)": [[309, "compas_occ.geometry.OCCCurve2d.translate"]], "translated() (compas_occ.geometry.occcurve2d method)": [[310, "compas_occ.geometry.OCCCurve2d.translated"]], "trim() (compas_occ.geometry.occcurve2d method)": [[311, "compas_occ.geometry.OCCCurve2d.trim"]], "validate_data() (compas_occ.geometry.occcurve2d class method)": [[312, "compas_occ.geometry.OCCCurve2d.validate_data"]], "occextrusionsurface (class in compas_occ.geometry)": [[313, "compas_occ.geometry.OCCExtrusionSurface"]], "tostring() (compas_occ.geometry.occextrusionsurface method)": [[314, "compas_occ.geometry.OCCExtrusionSurface.ToString"]], "aabb() (compas_occ.geometry.occextrusionsurface method)": [[315, "compas_occ.geometry.OCCExtrusionSurface.aabb"]], "boundary() (compas_occ.geometry.occextrusionsurface method)": [[316, "compas_occ.geometry.OCCExtrusionSurface.boundary"]], "closest_point() (compas_occ.geometry.occextrusionsurface method)": [[317, "compas_occ.geometry.OCCExtrusionSurface.closest_point"]], "compute() (compas_occ.geometry.occextrusionsurface method)": [[318, "compas_occ.geometry.OCCExtrusionSurface.compute"]], "compute_aabb() (compas_occ.geometry.occextrusionsurface method)": [[319, "compas_occ.geometry.OCCExtrusionSurface.compute_aabb"]], "compute_obb() (compas_occ.geometry.occextrusionsurface method)": [[320, "compas_occ.geometry.OCCExtrusionSurface.compute_obb"]], "copy() (compas_occ.geometry.occextrusionsurface method)": [[321, "compas_occ.geometry.OCCExtrusionSurface.copy"]], "curvature_at() (compas_occ.geometry.occextrusionsurface method)": [[322, "compas_occ.geometry.OCCExtrusionSurface.curvature_at"]], "frame_at() (compas_occ.geometry.occextrusionsurface method)": [[323, "compas_occ.geometry.OCCExtrusionSurface.frame_at"]], "from_face() (compas_occ.geometry.occextrusionsurface class method)": [[324, "compas_occ.geometry.OCCExtrusionSurface.from_face"]], "from_json() (compas_occ.geometry.occextrusionsurface class method)": [[325, "compas_occ.geometry.OCCExtrusionSurface.from_json"]], "from_jsonstring() (compas_occ.geometry.occextrusionsurface class method)": [[326, "compas_occ.geometry.OCCExtrusionSurface.from_jsonstring"]], "from_obj() (compas_occ.geometry.occextrusionsurface class method)": [[327, "compas_occ.geometry.OCCExtrusionSurface.from_obj"]], "from_occ() (compas_occ.geometry.occextrusionsurface class method)": [[328, "compas_occ.geometry.OCCExtrusionSurface.from_occ"]], "from_plane() (compas_occ.geometry.occextrusionsurface class method)": [[329, "compas_occ.geometry.OCCExtrusionSurface.from_plane"]], "from_step() (compas_occ.geometry.occextrusionsurface class method)": [[330, "compas_occ.geometry.OCCExtrusionSurface.from_step"]], "gaussian_curvature_at() (compas_occ.geometry.occextrusionsurface method)": [[331, "compas_occ.geometry.OCCExtrusionSurface.gaussian_curvature_at"]], "intersections_with_curve() (compas_occ.geometry.occextrusionsurface method)": [[332, "compas_occ.geometry.OCCExtrusionSurface.intersections_with_curve"]], "intersections_with_line() (compas_occ.geometry.occextrusionsurface method)": [[333, "compas_occ.geometry.OCCExtrusionSurface.intersections_with_line"]], "intersections_with_plane() (compas_occ.geometry.occextrusionsurface method)": [[334, "compas_occ.geometry.OCCExtrusionSurface.intersections_with_plane"]], "isocurve_u() (compas_occ.geometry.occextrusionsurface method)": [[335, "compas_occ.geometry.OCCExtrusionSurface.isocurve_u"]], "isocurve_v() (compas_occ.geometry.occextrusionsurface method)": [[336, "compas_occ.geometry.OCCExtrusionSurface.isocurve_v"]], "mean_curvature_at() (compas_occ.geometry.occextrusionsurface method)": [[337, "compas_occ.geometry.OCCExtrusionSurface.mean_curvature_at"]], "normal_at() (compas_occ.geometry.occextrusionsurface method)": [[338, "compas_occ.geometry.OCCExtrusionSurface.normal_at"]], "obb() (compas_occ.geometry.occextrusionsurface method)": [[339, "compas_occ.geometry.OCCExtrusionSurface.obb"]], "point_at() (compas_occ.geometry.occextrusionsurface method)": [[340, "compas_occ.geometry.OCCExtrusionSurface.point_at"]], "pointgrid() (compas_occ.geometry.occextrusionsurface method)": [[341, "compas_occ.geometry.OCCExtrusionSurface.pointgrid"]], "rotate() (compas_occ.geometry.occextrusionsurface method)": [[342, "compas_occ.geometry.OCCExtrusionSurface.rotate"]], "rotated() (compas_occ.geometry.occextrusionsurface method)": [[343, "compas_occ.geometry.OCCExtrusionSurface.rotated"]], "scale() (compas_occ.geometry.occextrusionsurface method)": [[344, "compas_occ.geometry.OCCExtrusionSurface.scale"]], "scaled() (compas_occ.geometry.occextrusionsurface method)": [[345, "compas_occ.geometry.OCCExtrusionSurface.scaled"]], "sha256() (compas_occ.geometry.occextrusionsurface method)": [[346, "compas_occ.geometry.OCCExtrusionSurface.sha256"]], "space_u() (compas_occ.geometry.occextrusionsurface method)": [[347, "compas_occ.geometry.OCCExtrusionSurface.space_u"]], "space_v() (compas_occ.geometry.occextrusionsurface method)": [[348, "compas_occ.geometry.OCCExtrusionSurface.space_v"]], "to_brep() (compas_occ.geometry.occextrusionsurface method)": [[349, "compas_occ.geometry.OCCExtrusionSurface.to_brep"]], "to_json() (compas_occ.geometry.occextrusionsurface method)": [[350, "compas_occ.geometry.OCCExtrusionSurface.to_json"]], "to_jsonstring() (compas_occ.geometry.occextrusionsurface method)": [[351, "compas_occ.geometry.OCCExtrusionSurface.to_jsonstring"]], "to_mesh() (compas_occ.geometry.occextrusionsurface method)": [[352, "compas_occ.geometry.OCCExtrusionSurface.to_mesh"]], "to_polyhedron() (compas_occ.geometry.occextrusionsurface method)": [[353, "compas_occ.geometry.OCCExtrusionSurface.to_polyhedron"]], "to_quads() (compas_occ.geometry.occextrusionsurface method)": [[354, "compas_occ.geometry.OCCExtrusionSurface.to_quads"]], "to_step() (compas_occ.geometry.occextrusionsurface method)": [[355, "compas_occ.geometry.OCCExtrusionSurface.to_step"]], "to_tesselation() (compas_occ.geometry.occextrusionsurface method)": [[356, "compas_occ.geometry.OCCExtrusionSurface.to_tesselation"]], "to_triangles() (compas_occ.geometry.occextrusionsurface method)": [[357, "compas_occ.geometry.OCCExtrusionSurface.to_triangles"]], "to_vertices_and_faces() (compas_occ.geometry.occextrusionsurface method)": [[358, "compas_occ.geometry.OCCExtrusionSurface.to_vertices_and_faces"]], "transform() (compas_occ.geometry.occextrusionsurface method)": [[359, "compas_occ.geometry.OCCExtrusionSurface.transform"]], "transformed() (compas_occ.geometry.occextrusionsurface method)": [[360, "compas_occ.geometry.OCCExtrusionSurface.transformed"]], "translate() (compas_occ.geometry.occextrusionsurface method)": [[361, "compas_occ.geometry.OCCExtrusionSurface.translate"]], "translated() (compas_occ.geometry.occextrusionsurface method)": [[362, "compas_occ.geometry.OCCExtrusionSurface.translated"]], "validate_data() (compas_occ.geometry.occextrusionsurface class method)": [[363, "compas_occ.geometry.OCCExtrusionSurface.validate_data"]], "occnurbscurve (class in compas_occ.geometry)": [[364, "compas_occ.geometry.OCCNurbsCurve"]], "tostring() (compas_occ.geometry.occnurbscurve method)": [[365, "compas_occ.geometry.OCCNurbsCurve.ToString"]], "aabb() (compas_occ.geometry.occnurbscurve method)": [[366, "compas_occ.geometry.OCCNurbsCurve.aabb"]], "closest_parameters_curve() (compas_occ.geometry.occnurbscurve method)": [[367, "compas_occ.geometry.OCCNurbsCurve.closest_parameters_curve"]], "closest_point() (compas_occ.geometry.occnurbscurve method)": [[368, "compas_occ.geometry.OCCNurbsCurve.closest_point"]], "closest_points_curve() (compas_occ.geometry.occnurbscurve method)": [[369, "compas_occ.geometry.OCCNurbsCurve.closest_points_curve"]], "compute_aabb() (compas_occ.geometry.occnurbscurve method)": [[370, "compas_occ.geometry.OCCNurbsCurve.compute_aabb"]], "compute_obb() (compas_occ.geometry.occnurbscurve method)": [[371, "compas_occ.geometry.OCCNurbsCurve.compute_obb"]], "copy() (compas_occ.geometry.occnurbscurve method)": [[372, "compas_occ.geometry.OCCNurbsCurve.copy"]], "curvature_at() (compas_occ.geometry.occnurbscurve method)": [[373, "compas_occ.geometry.OCCNurbsCurve.curvature_at"]], "divide() (compas_occ.geometry.occnurbscurve method)": [[374, "compas_occ.geometry.OCCNurbsCurve.divide"]], "divide_by_count() (compas_occ.geometry.occnurbscurve method)": [[375, "compas_occ.geometry.OCCNurbsCurve.divide_by_count"]], "divide_by_length() (compas_occ.geometry.occnurbscurve method)": [[376, "compas_occ.geometry.OCCNurbsCurve.divide_by_length"]], "elevate_degree() (compas_occ.geometry.occnurbscurve method)": [[377, "compas_occ.geometry.OCCNurbsCurve.elevate_degree"]], "embedded() (compas_occ.geometry.occnurbscurve method)": [[378, "compas_occ.geometry.OCCNurbsCurve.embedded"]], "fair() (compas_occ.geometry.occnurbscurve method)": [[379, "compas_occ.geometry.OCCNurbsCurve.fair"]], "frame_at() (compas_occ.geometry.occnurbscurve method)": [[380, "compas_occ.geometry.OCCNurbsCurve.frame_at"]], "from_arc() (compas_occ.geometry.occnurbscurve class method)": [[381, "compas_occ.geometry.OCCNurbsCurve.from_arc"]], "from_circle() (compas_occ.geometry.occnurbscurve class method)": [[382, "compas_occ.geometry.OCCNurbsCurve.from_circle"]], "from_ellipse() (compas_occ.geometry.occnurbscurve class method)": [[383, "compas_occ.geometry.OCCNurbsCurve.from_ellipse"]], "from_interpolation() (compas_occ.geometry.occnurbscurve class method)": [[384, "compas_occ.geometry.OCCNurbsCurve.from_interpolation"]], "from_json() (compas_occ.geometry.occnurbscurve class method)": [[385, "compas_occ.geometry.OCCNurbsCurve.from_json"]], "from_jsonstring() (compas_occ.geometry.occnurbscurve class method)": [[386, "compas_occ.geometry.OCCNurbsCurve.from_jsonstring"]], "from_line() (compas_occ.geometry.occnurbscurve class method)": [[387, "compas_occ.geometry.OCCNurbsCurve.from_line"]], "from_native() (compas_occ.geometry.occnurbscurve class method)": [[388, "compas_occ.geometry.OCCNurbsCurve.from_native"]], "from_obj() (compas_occ.geometry.occnurbscurve class method)": [[389, "compas_occ.geometry.OCCNurbsCurve.from_obj"]], "from_occ() (compas_occ.geometry.occnurbscurve class method)": [[390, "compas_occ.geometry.OCCNurbsCurve.from_occ"]], "from_parameters() (compas_occ.geometry.occnurbscurve class method)": [[391, "compas_occ.geometry.OCCNurbsCurve.from_parameters"]], "from_points() (compas_occ.geometry.occnurbscurve class method)": [[392, "compas_occ.geometry.OCCNurbsCurve.from_points"]], "from_step() (compas_occ.geometry.occnurbscurve class method)": [[393, "compas_occ.geometry.OCCNurbsCurve.from_step"]], "insert_knot() (compas_occ.geometry.occnurbscurve method)": [[394, "compas_occ.geometry.OCCNurbsCurve.insert_knot"]], "join() (compas_occ.geometry.occnurbscurve method)": [[395, "compas_occ.geometry.OCCNurbsCurve.join"]], "joined() (compas_occ.geometry.occnurbscurve method)": [[396, "compas_occ.geometry.OCCNurbsCurve.joined"]], "length() (compas_occ.geometry.occnurbscurve method)": [[397, "compas_occ.geometry.OCCNurbsCurve.length"]], "normal_at() (compas_occ.geometry.occnurbscurve method)": [[398, "compas_occ.geometry.OCCNurbsCurve.normal_at"]], "offset() (compas_occ.geometry.occnurbscurve method)": [[399, "compas_occ.geometry.OCCNurbsCurve.offset"]], "parameter_at_distance() (compas_occ.geometry.occnurbscurve method)": [[400, "compas_occ.geometry.OCCNurbsCurve.parameter_at_distance"]], "point_at() (compas_occ.geometry.occnurbscurve method)": [[401, "compas_occ.geometry.OCCNurbsCurve.point_at"]], "projected() (compas_occ.geometry.occnurbscurve method)": [[402, "compas_occ.geometry.OCCNurbsCurve.projected"]], "reduce_degree() (compas_occ.geometry.occnurbscurve method)": [[403, "compas_occ.geometry.OCCNurbsCurve.reduce_degree"]], "refine_knot() (compas_occ.geometry.occnurbscurve method)": [[404, "compas_occ.geometry.OCCNurbsCurve.refine_knot"]], "remove_knot() (compas_occ.geometry.occnurbscurve method)": [[405, "compas_occ.geometry.OCCNurbsCurve.remove_knot"]], "reverse() (compas_occ.geometry.occnurbscurve method)": [[406, "compas_occ.geometry.OCCNurbsCurve.reverse"]], "reversed() (compas_occ.geometry.occnurbscurve method)": [[407, "compas_occ.geometry.OCCNurbsCurve.reversed"]], "rotate() (compas_occ.geometry.occnurbscurve method)": [[408, "compas_occ.geometry.OCCNurbsCurve.rotate"]], "rotated() (compas_occ.geometry.occnurbscurve method)": [[409, "compas_occ.geometry.OCCNurbsCurve.rotated"]], "scale() (compas_occ.geometry.occnurbscurve method)": [[410, "compas_occ.geometry.OCCNurbsCurve.scale"]], "scaled() (compas_occ.geometry.occnurbscurve method)": [[411, "compas_occ.geometry.OCCNurbsCurve.scaled"]], "segment() (compas_occ.geometry.occnurbscurve method)": [[412, "compas_occ.geometry.OCCNurbsCurve.segment"]], "segmented() (compas_occ.geometry.occnurbscurve method)": [[413, "compas_occ.geometry.OCCNurbsCurve.segmented"]], "sha256() (compas_occ.geometry.occnurbscurve method)": [[414, "compas_occ.geometry.OCCNurbsCurve.sha256"]], "smooth() (compas_occ.geometry.occnurbscurve method)": [[415, "compas_occ.geometry.OCCNurbsCurve.smooth"]], "split() (compas_occ.geometry.occnurbscurve method)": [[416, "compas_occ.geometry.OCCNurbsCurve.split"]], "tangent_at() (compas_occ.geometry.occnurbscurve method)": [[417, "compas_occ.geometry.OCCNurbsCurve.tangent_at"]], "to_json() (compas_occ.geometry.occnurbscurve method)": [[418, "compas_occ.geometry.OCCNurbsCurve.to_json"]], "to_jsonstring() (compas_occ.geometry.occnurbscurve method)": [[419, "compas_occ.geometry.OCCNurbsCurve.to_jsonstring"]], "to_obj() (compas_occ.geometry.occnurbscurve method)": [[420, "compas_occ.geometry.OCCNurbsCurve.to_obj"]], "to_points() (compas_occ.geometry.occnurbscurve method)": [[421, "compas_occ.geometry.OCCNurbsCurve.to_points"]], "to_polygon() (compas_occ.geometry.occnurbscurve method)": [[422, "compas_occ.geometry.OCCNurbsCurve.to_polygon"]], "to_polyline() (compas_occ.geometry.occnurbscurve method)": [[423, "compas_occ.geometry.OCCNurbsCurve.to_polyline"]], "to_step() (compas_occ.geometry.occnurbscurve method)": [[424, "compas_occ.geometry.OCCNurbsCurve.to_step"]], "transform() (compas_occ.geometry.occnurbscurve method)": [[425, "compas_occ.geometry.OCCNurbsCurve.transform"]], "transformed() (compas_occ.geometry.occnurbscurve method)": [[426, "compas_occ.geometry.OCCNurbsCurve.transformed"]], "translate() (compas_occ.geometry.occnurbscurve method)": [[427, "compas_occ.geometry.OCCNurbsCurve.translate"]], "translated() (compas_occ.geometry.occnurbscurve method)": [[428, "compas_occ.geometry.OCCNurbsCurve.translated"]], "trim() (compas_occ.geometry.occnurbscurve method)": [[429, "compas_occ.geometry.OCCNurbsCurve.trim"]], "validate_data() (compas_occ.geometry.occnurbscurve class method)": [[430, "compas_occ.geometry.OCCNurbsCurve.validate_data"]], "occnurbssurface (class in compas_occ.geometry)": [[431, "compas_occ.geometry.OCCNurbsSurface"]], "tostring() (compas_occ.geometry.occnurbssurface method)": [[432, "compas_occ.geometry.OCCNurbsSurface.ToString"]], "aabb() (compas_occ.geometry.occnurbssurface method)": [[433, "compas_occ.geometry.OCCNurbsSurface.aabb"]], "boundary() (compas_occ.geometry.occnurbssurface method)": [[434, "compas_occ.geometry.OCCNurbsSurface.boundary"]], "closest_point() (compas_occ.geometry.occnurbssurface method)": [[435, "compas_occ.geometry.OCCNurbsSurface.closest_point"]], "compute_aabb() (compas_occ.geometry.occnurbssurface method)": [[436, "compas_occ.geometry.OCCNurbsSurface.compute_aabb"]], "compute_obb() (compas_occ.geometry.occnurbssurface method)": [[437, "compas_occ.geometry.OCCNurbsSurface.compute_obb"]], "copy() (compas_occ.geometry.occnurbssurface method)": [[438, "compas_occ.geometry.OCCNurbsSurface.copy"]], "curvature_at() (compas_occ.geometry.occnurbssurface method)": [[439, "compas_occ.geometry.OCCNurbsSurface.curvature_at"]], "frame_at() (compas_occ.geometry.occnurbssurface method)": [[440, "compas_occ.geometry.OCCNurbsSurface.frame_at"]], "from_extrusion() (compas_occ.geometry.occnurbssurface class method)": [[441, "compas_occ.geometry.OCCNurbsSurface.from_extrusion"]], "from_face() (compas_occ.geometry.occnurbssurface class method)": [[442, "compas_occ.geometry.OCCNurbsSurface.from_face"]], "from_fill() (compas_occ.geometry.occnurbssurface class method)": [[443, "compas_occ.geometry.OCCNurbsSurface.from_fill"]], "from_interpolation() (compas_occ.geometry.occnurbssurface class method)": [[444, "compas_occ.geometry.OCCNurbsSurface.from_interpolation"]], "from_json() (compas_occ.geometry.occnurbssurface class method)": [[445, "compas_occ.geometry.OCCNurbsSurface.from_json"]], "from_jsonstring() (compas_occ.geometry.occnurbssurface class method)": [[446, "compas_occ.geometry.OCCNurbsSurface.from_jsonstring"]], "from_meshgrid() (compas_occ.geometry.occnurbssurface class method)": [[447, "compas_occ.geometry.OCCNurbsSurface.from_meshgrid"]], "from_native() (compas_occ.geometry.occnurbssurface class method)": [[448, "compas_occ.geometry.OCCNurbsSurface.from_native"]], "from_obj() (compas_occ.geometry.occnurbssurface class method)": [[449, "compas_occ.geometry.OCCNurbsSurface.from_obj"]], "from_occ() (compas_occ.geometry.occnurbssurface class method)": [[450, "compas_occ.geometry.OCCNurbsSurface.from_occ"]], "from_parameters() (compas_occ.geometry.occnurbssurface class method)": [[451, "compas_occ.geometry.OCCNurbsSurface.from_parameters"]], "from_plane() (compas_occ.geometry.occnurbssurface class method)": [[452, "compas_occ.geometry.OCCNurbsSurface.from_plane"]], "from_points() (compas_occ.geometry.occnurbssurface class method)": [[453, "compas_occ.geometry.OCCNurbsSurface.from_points"]], "from_step() (compas_occ.geometry.occnurbssurface class method)": [[454, "compas_occ.geometry.OCCNurbsSurface.from_step"]], "gaussian_curvature_at() (compas_occ.geometry.occnurbssurface method)": [[455, "compas_occ.geometry.OCCNurbsSurface.gaussian_curvature_at"]], "intersections_with_curve() (compas_occ.geometry.occnurbssurface method)": [[456, "compas_occ.geometry.OCCNurbsSurface.intersections_with_curve"]], "intersections_with_line() (compas_occ.geometry.occnurbssurface method)": [[457, "compas_occ.geometry.OCCNurbsSurface.intersections_with_line"]], "intersections_with_plane() (compas_occ.geometry.occnurbssurface method)": [[458, "compas_occ.geometry.OCCNurbsSurface.intersections_with_plane"]], "isocurve_u() (compas_occ.geometry.occnurbssurface method)": [[459, "compas_occ.geometry.OCCNurbsSurface.isocurve_u"]], "isocurve_v() (compas_occ.geometry.occnurbssurface method)": [[460, "compas_occ.geometry.OCCNurbsSurface.isocurve_v"]], "mean_curvature_at() (compas_occ.geometry.occnurbssurface method)": [[461, "compas_occ.geometry.OCCNurbsSurface.mean_curvature_at"]], "normal_at() (compas_occ.geometry.occnurbssurface method)": [[462, "compas_occ.geometry.OCCNurbsSurface.normal_at"]], "obb() (compas_occ.geometry.occnurbssurface method)": [[463, "compas_occ.geometry.OCCNurbsSurface.obb"]], "point_at() (compas_occ.geometry.occnurbssurface method)": [[464, "compas_occ.geometry.OCCNurbsSurface.point_at"]], "pointgrid() (compas_occ.geometry.occnurbssurface method)": [[465, "compas_occ.geometry.OCCNurbsSurface.pointgrid"]], "rotate() (compas_occ.geometry.occnurbssurface method)": [[466, "compas_occ.geometry.OCCNurbsSurface.rotate"]], "rotated() (compas_occ.geometry.occnurbssurface method)": [[467, "compas_occ.geometry.OCCNurbsSurface.rotated"]], "scale() (compas_occ.geometry.occnurbssurface method)": [[468, "compas_occ.geometry.OCCNurbsSurface.scale"]], "scaled() (compas_occ.geometry.occnurbssurface method)": [[469, "compas_occ.geometry.OCCNurbsSurface.scaled"]], "sha256() (compas_occ.geometry.occnurbssurface method)": [[470, "compas_occ.geometry.OCCNurbsSurface.sha256"]], "space_u() (compas_occ.geometry.occnurbssurface method)": [[471, "compas_occ.geometry.OCCNurbsSurface.space_u"]], "space_v() (compas_occ.geometry.occnurbssurface method)": [[472, "compas_occ.geometry.OCCNurbsSurface.space_v"]], "to_brep() (compas_occ.geometry.occnurbssurface method)": [[473, "compas_occ.geometry.OCCNurbsSurface.to_brep"]], "to_json() (compas_occ.geometry.occnurbssurface method)": [[474, "compas_occ.geometry.OCCNurbsSurface.to_json"]], "to_jsonstring() (compas_occ.geometry.occnurbssurface method)": [[475, "compas_occ.geometry.OCCNurbsSurface.to_jsonstring"]], "to_mesh() (compas_occ.geometry.occnurbssurface method)": [[476, "compas_occ.geometry.OCCNurbsSurface.to_mesh"]], "to_polyhedron() (compas_occ.geometry.occnurbssurface method)": [[477, "compas_occ.geometry.OCCNurbsSurface.to_polyhedron"]], "to_quads() (compas_occ.geometry.occnurbssurface method)": [[478, "compas_occ.geometry.OCCNurbsSurface.to_quads"]], "to_step() (compas_occ.geometry.occnurbssurface method)": [[479, "compas_occ.geometry.OCCNurbsSurface.to_step"]], "to_tesselation() (compas_occ.geometry.occnurbssurface method)": [[480, "compas_occ.geometry.OCCNurbsSurface.to_tesselation"]], "to_triangles() (compas_occ.geometry.occnurbssurface method)": [[481, "compas_occ.geometry.OCCNurbsSurface.to_triangles"]], "to_vertices_and_faces() (compas_occ.geometry.occnurbssurface method)": [[482, "compas_occ.geometry.OCCNurbsSurface.to_vertices_and_faces"]], "transform() (compas_occ.geometry.occnurbssurface method)": [[483, "compas_occ.geometry.OCCNurbsSurface.transform"]], "transformed() (compas_occ.geometry.occnurbssurface method)": [[484, "compas_occ.geometry.OCCNurbsSurface.transformed"]], "translate() (compas_occ.geometry.occnurbssurface method)": [[485, "compas_occ.geometry.OCCNurbsSurface.translate"]], "translated() (compas_occ.geometry.occnurbssurface method)": [[486, "compas_occ.geometry.OCCNurbsSurface.translated"]], "validate_data() (compas_occ.geometry.occnurbssurface class method)": [[487, "compas_occ.geometry.OCCNurbsSurface.validate_data"]], "occrevolutionsurface (class in compas_occ.geometry)": [[488, "compas_occ.geometry.OCCRevolutionSurface"]], "tostring() (compas_occ.geometry.occrevolutionsurface method)": [[489, "compas_occ.geometry.OCCRevolutionSurface.ToString"]], "aabb() (compas_occ.geometry.occrevolutionsurface method)": [[490, "compas_occ.geometry.OCCRevolutionSurface.aabb"]], "boundary() (compas_occ.geometry.occrevolutionsurface method)": [[491, "compas_occ.geometry.OCCRevolutionSurface.boundary"]], "closest_point() (compas_occ.geometry.occrevolutionsurface method)": [[492, "compas_occ.geometry.OCCRevolutionSurface.closest_point"]], "compute() (compas_occ.geometry.occrevolutionsurface method)": [[493, "compas_occ.geometry.OCCRevolutionSurface.compute"]], "compute_aabb() (compas_occ.geometry.occrevolutionsurface method)": [[494, "compas_occ.geometry.OCCRevolutionSurface.compute_aabb"]], "compute_obb() (compas_occ.geometry.occrevolutionsurface method)": [[495, "compas_occ.geometry.OCCRevolutionSurface.compute_obb"]], "copy() (compas_occ.geometry.occrevolutionsurface method)": [[496, "compas_occ.geometry.OCCRevolutionSurface.copy"]], "curvature_at() (compas_occ.geometry.occrevolutionsurface method)": [[497, "compas_occ.geometry.OCCRevolutionSurface.curvature_at"]], "frame_at() (compas_occ.geometry.occrevolutionsurface method)": [[498, "compas_occ.geometry.OCCRevolutionSurface.frame_at"]], "from_face() (compas_occ.geometry.occrevolutionsurface class method)": [[499, "compas_occ.geometry.OCCRevolutionSurface.from_face"]], "from_json() (compas_occ.geometry.occrevolutionsurface class method)": [[500, "compas_occ.geometry.OCCRevolutionSurface.from_json"]], "from_jsonstring() (compas_occ.geometry.occrevolutionsurface class method)": [[501, "compas_occ.geometry.OCCRevolutionSurface.from_jsonstring"]], "from_obj() (compas_occ.geometry.occrevolutionsurface class method)": [[502, "compas_occ.geometry.OCCRevolutionSurface.from_obj"]], "from_occ() (compas_occ.geometry.occrevolutionsurface class method)": [[503, "compas_occ.geometry.OCCRevolutionSurface.from_occ"]], "from_plane() (compas_occ.geometry.occrevolutionsurface class method)": [[504, "compas_occ.geometry.OCCRevolutionSurface.from_plane"]], "from_step() (compas_occ.geometry.occrevolutionsurface class method)": [[505, "compas_occ.geometry.OCCRevolutionSurface.from_step"]], "gaussian_curvature_at() (compas_occ.geometry.occrevolutionsurface method)": [[506, "compas_occ.geometry.OCCRevolutionSurface.gaussian_curvature_at"]], "intersections_with_curve() (compas_occ.geometry.occrevolutionsurface method)": [[507, "compas_occ.geometry.OCCRevolutionSurface.intersections_with_curve"]], "intersections_with_line() (compas_occ.geometry.occrevolutionsurface method)": [[508, "compas_occ.geometry.OCCRevolutionSurface.intersections_with_line"]], "intersections_with_plane() (compas_occ.geometry.occrevolutionsurface method)": [[509, "compas_occ.geometry.OCCRevolutionSurface.intersections_with_plane"]], "isocurve_u() (compas_occ.geometry.occrevolutionsurface method)": [[510, "compas_occ.geometry.OCCRevolutionSurface.isocurve_u"]], "isocurve_v() (compas_occ.geometry.occrevolutionsurface method)": [[511, "compas_occ.geometry.OCCRevolutionSurface.isocurve_v"]], "mean_curvature_at() (compas_occ.geometry.occrevolutionsurface method)": [[512, "compas_occ.geometry.OCCRevolutionSurface.mean_curvature_at"]], "normal_at() (compas_occ.geometry.occrevolutionsurface method)": [[513, "compas_occ.geometry.OCCRevolutionSurface.normal_at"]], "obb() (compas_occ.geometry.occrevolutionsurface method)": [[514, "compas_occ.geometry.OCCRevolutionSurface.obb"]], "point_at() (compas_occ.geometry.occrevolutionsurface method)": [[515, "compas_occ.geometry.OCCRevolutionSurface.point_at"]], "pointgrid() (compas_occ.geometry.occrevolutionsurface method)": [[516, "compas_occ.geometry.OCCRevolutionSurface.pointgrid"]], "rotate() (compas_occ.geometry.occrevolutionsurface method)": [[517, "compas_occ.geometry.OCCRevolutionSurface.rotate"]], "rotated() (compas_occ.geometry.occrevolutionsurface method)": [[518, "compas_occ.geometry.OCCRevolutionSurface.rotated"]], "scale() (compas_occ.geometry.occrevolutionsurface method)": [[519, "compas_occ.geometry.OCCRevolutionSurface.scale"]], "scaled() (compas_occ.geometry.occrevolutionsurface method)": [[520, "compas_occ.geometry.OCCRevolutionSurface.scaled"]], "sha256() (compas_occ.geometry.occrevolutionsurface method)": [[521, "compas_occ.geometry.OCCRevolutionSurface.sha256"]], "space_u() (compas_occ.geometry.occrevolutionsurface method)": [[522, "compas_occ.geometry.OCCRevolutionSurface.space_u"]], "space_v() (compas_occ.geometry.occrevolutionsurface method)": [[523, "compas_occ.geometry.OCCRevolutionSurface.space_v"]], "to_brep() (compas_occ.geometry.occrevolutionsurface method)": [[524, "compas_occ.geometry.OCCRevolutionSurface.to_brep"]], "to_json() (compas_occ.geometry.occrevolutionsurface method)": [[525, "compas_occ.geometry.OCCRevolutionSurface.to_json"]], "to_jsonstring() (compas_occ.geometry.occrevolutionsurface method)": [[526, "compas_occ.geometry.OCCRevolutionSurface.to_jsonstring"]], "to_mesh() (compas_occ.geometry.occrevolutionsurface method)": [[527, "compas_occ.geometry.OCCRevolutionSurface.to_mesh"]], "to_polyhedron() (compas_occ.geometry.occrevolutionsurface method)": [[528, "compas_occ.geometry.OCCRevolutionSurface.to_polyhedron"]], "to_quads() (compas_occ.geometry.occrevolutionsurface method)": [[529, "compas_occ.geometry.OCCRevolutionSurface.to_quads"]], "to_step() (compas_occ.geometry.occrevolutionsurface method)": [[530, "compas_occ.geometry.OCCRevolutionSurface.to_step"]], "to_tesselation() (compas_occ.geometry.occrevolutionsurface method)": [[531, "compas_occ.geometry.OCCRevolutionSurface.to_tesselation"]], "to_triangles() (compas_occ.geometry.occrevolutionsurface method)": [[532, "compas_occ.geometry.OCCRevolutionSurface.to_triangles"]], "to_vertices_and_faces() (compas_occ.geometry.occrevolutionsurface method)": [[533, "compas_occ.geometry.OCCRevolutionSurface.to_vertices_and_faces"]], "transform() (compas_occ.geometry.occrevolutionsurface method)": [[534, "compas_occ.geometry.OCCRevolutionSurface.transform"]], "transformed() (compas_occ.geometry.occrevolutionsurface method)": [[535, "compas_occ.geometry.OCCRevolutionSurface.transformed"]], "translate() (compas_occ.geometry.occrevolutionsurface method)": [[536, "compas_occ.geometry.OCCRevolutionSurface.translate"]], "translated() (compas_occ.geometry.occrevolutionsurface method)": [[537, "compas_occ.geometry.OCCRevolutionSurface.translated"]], "validate_data() (compas_occ.geometry.occrevolutionsurface class method)": [[538, "compas_occ.geometry.OCCRevolutionSurface.validate_data"]], "occsurface (class in compas_occ.geometry)": [[539, "compas_occ.geometry.OCCSurface"]], "tostring() (compas_occ.geometry.occsurface method)": [[540, "compas_occ.geometry.OCCSurface.ToString"]], "aabb() (compas_occ.geometry.occsurface method)": [[541, "compas_occ.geometry.OCCSurface.aabb"]], "boundary() (compas_occ.geometry.occsurface method)": [[542, "compas_occ.geometry.OCCSurface.boundary"]], "closest_point() (compas_occ.geometry.occsurface method)": [[543, "compas_occ.geometry.OCCSurface.closest_point"]], "compute_aabb() (compas_occ.geometry.occsurface method)": [[544, "compas_occ.geometry.OCCSurface.compute_aabb"]], "compute_obb() (compas_occ.geometry.occsurface method)": [[545, "compas_occ.geometry.OCCSurface.compute_obb"]], "copy() (compas_occ.geometry.occsurface method)": [[546, "compas_occ.geometry.OCCSurface.copy"]], "curvature_at() (compas_occ.geometry.occsurface method)": [[547, "compas_occ.geometry.OCCSurface.curvature_at"]], "frame_at() (compas_occ.geometry.occsurface method)": [[548, "compas_occ.geometry.OCCSurface.frame_at"]], "from_face() (compas_occ.geometry.occsurface class method)": [[549, "compas_occ.geometry.OCCSurface.from_face"]], "from_json() (compas_occ.geometry.occsurface class method)": [[550, "compas_occ.geometry.OCCSurface.from_json"]], "from_jsonstring() (compas_occ.geometry.occsurface class method)": [[551, "compas_occ.geometry.OCCSurface.from_jsonstring"]], "from_obj() (compas_occ.geometry.occsurface class method)": [[552, "compas_occ.geometry.OCCSurface.from_obj"]], "from_occ() (compas_occ.geometry.occsurface class method)": [[553, "compas_occ.geometry.OCCSurface.from_occ"]], "from_plane() (compas_occ.geometry.occsurface class method)": [[554, "compas_occ.geometry.OCCSurface.from_plane"]], "from_step() (compas_occ.geometry.occsurface class method)": [[555, "compas_occ.geometry.OCCSurface.from_step"]], "gaussian_curvature_at() (compas_occ.geometry.occsurface method)": [[556, "compas_occ.geometry.OCCSurface.gaussian_curvature_at"]], "intersections_with_curve() (compas_occ.geometry.occsurface method)": [[557, "compas_occ.geometry.OCCSurface.intersections_with_curve"]], "intersections_with_line() (compas_occ.geometry.occsurface method)": [[558, "compas_occ.geometry.OCCSurface.intersections_with_line"]], "intersections_with_plane() (compas_occ.geometry.occsurface method)": [[559, "compas_occ.geometry.OCCSurface.intersections_with_plane"]], "isocurve_u() (compas_occ.geometry.occsurface method)": [[560, "compas_occ.geometry.OCCSurface.isocurve_u"]], "isocurve_v() (compas_occ.geometry.occsurface method)": [[561, "compas_occ.geometry.OCCSurface.isocurve_v"]], "mean_curvature_at() (compas_occ.geometry.occsurface method)": [[562, "compas_occ.geometry.OCCSurface.mean_curvature_at"]], "normal_at() (compas_occ.geometry.occsurface method)": [[563, "compas_occ.geometry.OCCSurface.normal_at"]], "obb() (compas_occ.geometry.occsurface method)": [[564, "compas_occ.geometry.OCCSurface.obb"]], "point_at() (compas_occ.geometry.occsurface method)": [[565, "compas_occ.geometry.OCCSurface.point_at"]], "pointgrid() (compas_occ.geometry.occsurface method)": [[566, "compas_occ.geometry.OCCSurface.pointgrid"]], "rotate() (compas_occ.geometry.occsurface method)": [[567, "compas_occ.geometry.OCCSurface.rotate"]], "rotated() (compas_occ.geometry.occsurface method)": [[568, "compas_occ.geometry.OCCSurface.rotated"]], "scale() (compas_occ.geometry.occsurface method)": [[569, "compas_occ.geometry.OCCSurface.scale"]], "scaled() (compas_occ.geometry.occsurface method)": [[570, "compas_occ.geometry.OCCSurface.scaled"]], "sha256() (compas_occ.geometry.occsurface method)": [[571, "compas_occ.geometry.OCCSurface.sha256"]], "space_u() (compas_occ.geometry.occsurface method)": [[572, "compas_occ.geometry.OCCSurface.space_u"]], "space_v() (compas_occ.geometry.occsurface method)": [[573, "compas_occ.geometry.OCCSurface.space_v"]], "to_brep() (compas_occ.geometry.occsurface method)": [[574, "compas_occ.geometry.OCCSurface.to_brep"]], "to_json() (compas_occ.geometry.occsurface method)": [[575, "compas_occ.geometry.OCCSurface.to_json"]], "to_jsonstring() (compas_occ.geometry.occsurface method)": [[576, "compas_occ.geometry.OCCSurface.to_jsonstring"]], "to_mesh() (compas_occ.geometry.occsurface method)": [[577, "compas_occ.geometry.OCCSurface.to_mesh"]], "to_polyhedron() (compas_occ.geometry.occsurface method)": [[578, "compas_occ.geometry.OCCSurface.to_polyhedron"]], "to_quads() (compas_occ.geometry.occsurface method)": [[579, "compas_occ.geometry.OCCSurface.to_quads"]], "to_step() (compas_occ.geometry.occsurface method)": [[580, "compas_occ.geometry.OCCSurface.to_step"]], "to_tesselation() (compas_occ.geometry.occsurface method)": [[581, "compas_occ.geometry.OCCSurface.to_tesselation"]], "to_triangles() (compas_occ.geometry.occsurface method)": [[582, "compas_occ.geometry.OCCSurface.to_triangles"]], "to_vertices_and_faces() (compas_occ.geometry.occsurface method)": [[583, "compas_occ.geometry.OCCSurface.to_vertices_and_faces"]], "transform() (compas_occ.geometry.occsurface method)": [[584, "compas_occ.geometry.OCCSurface.transform"]], "transformed() (compas_occ.geometry.occsurface method)": [[585, "compas_occ.geometry.OCCSurface.transformed"]], "translate() (compas_occ.geometry.occsurface method)": [[586, "compas_occ.geometry.OCCSurface.translate"]], "translated() (compas_occ.geometry.occsurface method)": [[587, "compas_occ.geometry.OCCSurface.translated"]], "validate_data() (compas_occ.geometry.occsurface class method)": [[588, "compas_occ.geometry.OCCSurface.validate_data"]]}}) \ No newline at end of file diff --git a/latest/tutorial.html b/latest/tutorial.html index 051a6e597..3e3d4359e 100644 --- a/latest/tutorial.html +++ b/latest/tutorial.html @@ -34,7 +34,7 @@ - +