-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Meshgen module #99
Meshgen module #99
Conversation
Including documentation and examples
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow! This looks like a very powerful tool to make meshes. I'm very excited to start using this.
Code looks good.
I assuming you're also working on unit tests for this.
morpho5/docs/meshgen.md
Outdated
## Domain | ||
[tagdomain]: # (domain) | ||
|
||
The `Domain` class is used to conveniently build a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the last part of the sentence missing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great catch there! Will fix later...
|
||
Create a domain corresponding to the unit disk: | ||
|
||
var c = CircularDomain([0,0], 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is the origin argument restricted to 2D?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(looking at the code I don't think it is but it might be nice to mention?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So currently n-D meshes have to be in n-D. I should note this...
Update meshgen to improve documentation, improve benchmarking and add in a unit test
Meshgen module added, including documentation and examples.