Change Density Of 3D Model By MeshMixer
Here is a video to show how to change the density of model by MeshMixer, then compare the new model and old model in ParaView. The general steps are in the following part.
Here is a video to show how to change the density of model by MeshMixer, then compare the new model and old model in ParaView. The general steps are in the following part.
We can generate different 3D models of string in the page Create 3D Text. All fonts are free for individuals and business use. They come from the website https://ziyouziti.com. You can visit it if you are interested in these fonts. I will display the general effect of these fonts in Read more…
git merge – master – dev – master merge dev git merge another branch.xmind
squash commits original scene git rebase -i a60635 combine last three commits by squash final scene squash commits by git.xmind
I upgrade my server OS to CentOS 8.1, besides that the PHP, WordPress, and apache had been also upgraded to the latest version. All data had been back up by plugin UpdraftPlus, I planned to use it to restore my website. Here are some problems I met when I restored Read more…
Git stash has many common operations that can be represented by following commands. git stash git stash list git stash pop [–index] [stash_id] git stash apply [–index] [stash_id] git stash drop [stash_id] git stash clear Now we will learn a few other powerful options. git stash push After October 2017, Read more…
The library OpenCTM can be used to compress 3D data files. The new compressed file has only about 1/10 size compared with the original file. We can use vertex property to store the model’s color which is often PointData’s scalar in VTK. The following code snippet shows how to use Read more…
The Basic Knowledge About Docker. To find all containers and images: [parallels@localhost ~]$ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES [parallels@localhost ~]$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE mono latest 2ba93b1033ba 2 weeks ago 690MB hello-world latest fce289e99eb9 11 months ago 1.84kB To read information Read more…
Last night I read some pages in VTKUsersGuide to learn VTK factory mechanism. I got the basic steps of defining my own factory and use it. Implement virtual function which is declared in vtkObjectFactory. virtual const char* GetVTKSourceVersion(); virtual const char* GetDescription(); Create Object Use the protected function RegisterOverride which Read more…