├── .gitignore ├── LICENSE ├── README.md └── sketchup ├── c105.skp ├── c220.skp ├── c315.skp ├── c320.skp ├── c410.skp ├── components ├── CREDITS.txt ├── backplane.skp ├── backplane_85mm.skp ├── backplane_85mm_x4.skp ├── board_mini-itx.skp ├── board_pico-itx.skp ├── disk_25_sata.skp ├── disk_35_sata.skp ├── fan_120mm.skp ├── fan_140mm.skp ├── fan_assembly.skp ├── fan_assembly_back.skp ├── metalsheet_4_6.skp ├── power_socket.skp ├── psu_1u_long.skp ├── psu_atx.skp ├── shield_mini-itx.skp └── switch_8port.skp ├── d105.skp ├── d120.skp ├── d120b.skp ├── d120d.skp ├── d620.skp └── d620b.skp /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~.skp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010 Tim Lossen 2 | 3 | This work is licensed under the Creative Commons Attribution 4 | License (Version 3.0): 5 | 6 | http://creativecommons.org/licenses/by/3.0/legalcode 7 | 8 | Summary: 9 | 10 | You are free to share (to copy, distribute and transmit) and to 11 | remix (to adapt) this work -- under the following conditions: 12 | you must attribute the work in the manner specified by the author 13 | or licensor (but not in any way that suggests that they endorse 14 | you or your use of the work). 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/README.md -------------------------------------------------------------------------------- /sketchup/c105.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/c105.skp -------------------------------------------------------------------------------- /sketchup/c220.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/c220.skp -------------------------------------------------------------------------------- /sketchup/c315.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/c315.skp -------------------------------------------------------------------------------- /sketchup/c320.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/c320.skp -------------------------------------------------------------------------------- /sketchup/c410.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/c410.skp -------------------------------------------------------------------------------- /sketchup/components/CREDITS.txt: -------------------------------------------------------------------------------- 1 | CREDITS 2 | 3 | kudos to the following people for sharing their 4 | components via "the sketchup components collection": 5 | 6 | board_mini-itx.skp -- Angis 7 | http://scc.jezmckean.com/item/179 8 | 9 | board_pico-itx.skp -- Dark3nergy 10 | http://scc.jezmckean.com/item/200 11 | 12 | disk_25_sata.skp -- Mick64 13 | http://scc.jezmckean.com/item/389 14 | 15 | disk_35_sata.skp -- Rexxie 16 | http://scc.jezmckean.com/item/97 17 | 18 | fan_120mm.skp -- legoman666 19 | http://scc.jezmckean.com/item/321 20 | 21 | fan_140mm.skp -- Scooby 22 | http://scc.jezmckean.com/item/285 23 | 24 | power_socket.skp -- Pjotr 25 | http://scc.jezmckean.com/item/35 26 | 27 | psu_atx.skp -- Reitau 28 | http://scc.jezmckean.com/item/128 29 | 30 | switch_8port.skp -- Klikka bZerk 31 | http://scc.jezmckean.com/item/125 32 | -------------------------------------------------------------------------------- /sketchup/components/backplane.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/backplane.skp -------------------------------------------------------------------------------- /sketchup/components/backplane_85mm.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/backplane_85mm.skp -------------------------------------------------------------------------------- /sketchup/components/backplane_85mm_x4.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/backplane_85mm_x4.skp -------------------------------------------------------------------------------- /sketchup/components/board_mini-itx.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/board_mini-itx.skp -------------------------------------------------------------------------------- /sketchup/components/board_pico-itx.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/board_pico-itx.skp -------------------------------------------------------------------------------- /sketchup/components/disk_25_sata.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/disk_25_sata.skp -------------------------------------------------------------------------------- /sketchup/components/disk_35_sata.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/disk_35_sata.skp -------------------------------------------------------------------------------- /sketchup/components/fan_120mm.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/fan_120mm.skp -------------------------------------------------------------------------------- /sketchup/components/fan_140mm.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/fan_140mm.skp -------------------------------------------------------------------------------- /sketchup/components/fan_assembly.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/fan_assembly.skp -------------------------------------------------------------------------------- /sketchup/components/fan_assembly_back.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/fan_assembly_back.skp -------------------------------------------------------------------------------- /sketchup/components/metalsheet_4_6.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/metalsheet_4_6.skp -------------------------------------------------------------------------------- /sketchup/components/power_socket.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/power_socket.skp -------------------------------------------------------------------------------- /sketchup/components/psu_1u_long.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/psu_1u_long.skp -------------------------------------------------------------------------------- /sketchup/components/psu_atx.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/psu_atx.skp -------------------------------------------------------------------------------- /sketchup/components/shield_mini-itx.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/shield_mini-itx.skp -------------------------------------------------------------------------------- /sketchup/components/switch_8port.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/components/switch_8port.skp -------------------------------------------------------------------------------- /sketchup/d105.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/d105.skp -------------------------------------------------------------------------------- /sketchup/d120.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/d120.skp -------------------------------------------------------------------------------- /sketchup/d120b.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/d120b.skp -------------------------------------------------------------------------------- /sketchup/d120d.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/d120d.skp -------------------------------------------------------------------------------- /sketchup/d620.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/d620.skp -------------------------------------------------------------------------------- /sketchup/d620b.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlossen/openstoragepod/d90329f256e14a386207a86eba7725a05abdaa26/sketchup/d620b.skp --------------------------------------------------------------------------------