Metadata-Version: 2.1
Name: FormulaBasedMaterials
Version: 0.2.1
Summary: A code for generating Formula-Based Materials into Voxel, STL files.
Home-page: https://github.com/MicDonald/FormulaBasedMaterials
Author: Michael, Yu-Chuan, Hsu
Author-email: mk60503mk60503@gmail.com
License: MIT
Description: # FormulaBasedMaterials
        Generate Formula-Based Materials into Voxel, STL files
        
        # Usage:
        
        ```
        pip install FormulaBasedMaterials
        ```
        
        ```python
        import matplotlib.pyplot as plt
        %matplotlib inline
        import FormulaBasedMaterials as FBM
        
        test_SingleFM=FBM.SingleFormulaBasedMaterial(formula='sin(x)*cos(y)+sin(y)*cos(z)+sin(z)*cos(x)+1', l=10, r=[1,1,1], a=[1,1,1], eps=0.2, res=0.2)
        test_SingleFM=FBM.SingleFormulaBasedMaterial(unit='random')
        test_SingleFM=FBM.SingleFormulaBasedMaterial(unit='SchD')
        test_SingleFM=FBM.SingleFormulaBasedMaterial(unit='gyroid')
        test_SingleFM.formSolid(save=True,smooth=True)
        test_SingleFM.formSurface(save=False)
        ```
        
Keywords: Formula-Based,3D printing,stl,voxel,surface
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
