Newer
Older
- Solidworks -> email -> google drive
- xDesign -> email -> google drive
- Fusion360 -> coming
- OnShape -> created (check email)
- [Tips](http://tatsuro.homma.fabcloud.io/fabacademy/tips/content/markdown/)
- [Layout](https://fabacademy.org/2022/labs/kannai/students/yukiya-yamane/)
## Preparation for next week
> **Computer-Controlled Cutting**
> individual assignment:
> cut something on the vinylcutter
- vinylcutter
- sand blast > Glass
- Ref. [last year](https://fabacademy.org/2021/labs/kannai/students/natsuka-kamei/week3.html)
- heat press > T-shirt
- [Pressing](./images/T-shirts_press.jpg)
- [Graduation](./images/T-shirts_grad.jpg)
> design, lasercut, and document a parametric construction kit
- Design
- well Prepared -> your original
- if not -> simple
## (Individual) Assignment
> model (raster, vector, 2D, 3D, render, animate, simulate, ...) a possible final project,
compress your images and videos,
and post a description with your design files on your class page
#### Have you answered these questions?
[Assesment](https://fabacademy.org/2022/nueval/computer-aided_design.html)
- Modelled experimental objects/part of a possible project in 2D and 3D software
- Shown how you did it with words/images/screenshots
- Included your original design files
- [Inkscape](https://inkscape.org/)
- Illustrator
- CorelDRAW
### 3D design
- Fusion360 -> parametric design
- [OnShape](https://www.onshape.com/en/)
- [Blender](https://www.blender.org/)
- [Wakayama Univ](https://drive.google.com/file/d/1m2lOC0plHx6fswb_4jUQ_SRqHF8zOAIW/view?usp=sharing)
- ZBrush
- [ZBrushCoreMini](https://pixologic.jp/zbrushcoremini-download/)
- ref. [article](https://cginterest.com/2020/06/11/zbrush-%E3%81%AB%E7%84%A1%E6%96%99%E7%89%88%E3%81%AE%E3%80%8Czbrush-core-mini%E3%80%8D%E3%81%8C%E7%99%BB%E5%A0%B4%EF%BC%81/)
- [ZBrush Core Mini Tutorial for Absolute Beginners](https://www.youtube.com/watch?v=Jdm3JxvCu-Q)
- [ZBrushCoreMini の使い方](https://oakcorp.net/pixologic/mini/howto/)
- SolidWorks
- installed in PC in FabLab Kannai
### Animate
- Fusion360
### Simulation
- Blander Physics
- [Manual](https://docs.blender.org/manual/en/latest/physics/index.html)
- [video](http://academy.cba.mit.edu/classes/interface_application_programming/physics.mp4)
- [Blender Physics](http://yuichitamiya.fabcloud.io/fabacademy2020/projects/blender_physics/)
!!! Attention
[How to animate cube in Houdini](https://vimeo.com/221178360)
### compress images and videos
- [imagemagick](https://imagemagick.org/index.php)
- [encoding](http://academy.cba.mit.edu/classes/computer_design/image.html)
```
//convert PNG to JPG:
% convert input.png output.jpg
//convert all PNGs to JPGs:
% mogrify -format jpg *.png
//convert SVG to PNG at 1000 DPI:
% convert -density 1000 -units PixelsPerInch input.svg output.png
//compress JPG to quality 50% width 1000:
% convert input.jpg -quality 50% -resize 1000 output.jpg
//compress all JPGs to quality 50% width 1000:
% mogrify -quality 50% -resize 1000 *.jpg