-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ryan Danehy
committed
Nov 10, 2023
1 parent
f5fa5ba
commit 6f0c799
Showing
3 changed files
with
48 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
Source Documentation | ||
==================== | ||
|
||
Primal is a component of Axom that provides efficient and general purpose | ||
algorithms and data structures for computational geometry. Primal provides: | ||
|
||
- Classes to represent geometric primitives such as Point and Ray | ||
- Functions operating on Primal's classes to implement geometric operators, | ||
including distance and intersection | ||
|
||
This tutorial contains a collection of brief examples demonstrating | ||
Primal primitives and operators. The examples instantiate geometric primitives | ||
as needed and demonstrate geometric operators. These examples also show | ||
representative overloads of each of the Primal operators (see the | ||
`API documentation <../../../../doxygen/html/primaltop.html>`_ | ||
for more details). | ||
|
||
|
||
API Documentation | ||
----------------- | ||
|
||
Doxygen generated API documentation can be found here: `API documentation <./html/index.html>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* override table width restrictions */ | ||
@media screen and (min-width: 767px) { | ||
|
||
.wy-table-responsive table td { | ||
/* !important prevents the common CSS stylesheets from overriding | ||
this as on RTD they are loaded after this stylesheet */ | ||
white-space: normal !important; | ||
} | ||
|
||
.wy-table-responsive { | ||
overflow: visible !important; | ||
} | ||
} | ||
|
||
a img.logo { | ||
transform: scale(.75) | ||
} | ||
|
||
/* Sidebar header (and topbar for mobile) */ | ||
.wy-side-nav-search, .wy-nav-top { | ||
background: #343131; | ||
} |