This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; generated by Slic3r 1.2.6 on 2015-02-07 at 22:35:14 | |
| ; external perimeters extrusion width = 0.40mm | |
| ; perimeters extrusion width = 0.60mm | |
| ; infill extrusion width = 0.60mm | |
| ; solid infill extrusion width = 0.60mm | |
| ; top infill extrusion width = 0.40mm | |
| ; support material extrusion width = 1.00mm | |
| M127 ; disable fan |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # generated by Slic3r 1.2.6 on Sat Feb 7 22:51:00 2015 | |
| avoid_crossing_perimeters = 0 | |
| bed_shape = -112.5x-72.5,112.5x-72.5,112.5x72.5,-112.5x72.5 | |
| bed_temperature = 55 | |
| before_layer_gcode = | |
| bottom_solid_layers = 3 | |
| bridge_acceleration = 0 | |
| bridge_fan_speed = 100 | |
| bridge_flow_ratio = 1 | |
| bridge_speed = 28 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use <MCAD/gears/rack_and_pinion.scad> | |
| include <MCAD/units/metric.scad> | |
| $fs = 0.4; | |
| $fa = 1; | |
| N = 10; | |
| cp = 5; | |
| pitch_perimeter = cp * N; | |
| pitch_radius = pitch_perimeter / 2 / PI; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # generated by Slic3r 1.2.6 on Tue Feb 17 01:18:20 2015 | |
| avoid_crossing_perimeters = 0 | |
| bed_shape = -112.5x-72.5,112.5x-72.5,112.5x72.5,-112.5x72.5 | |
| bed_temperature = 60 | |
| before_layer_gcode = | |
| bottom_solid_layers = 6 | |
| bridge_acceleration = 0 | |
| bridge_fan_speed = 100 | |
| bridge_flow_ratio = 1 | |
| bridge_speed = 28 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import socket | |
| import sys | |
| port = int(sys.argv[1]) | |
| s = socket.socket(socket.AF_INET, socket.SOCK_STREAM, socket.IPPROTO_TCP) | |
| s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) | |
| s.bind(('127.0.0.1', 12345)) | |
| s.connect(('localhost', port)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| include <MCAD/units/metric.scad> | |
| module mcad_rounded_cylinder ( | |
| // same options as cylinder() | |
| r = undef, h = undef, d = undef, | |
| r1 = undef, r2 = undef, | |
| d1 = undef, d2 = undef, | |
| // rounding radius | |
| round_r = 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sbuild (Debian sbuild) 0.64.1 (13 Oct 2013) on thinkpwn | |
| ╔══════════════════════════════════════════════════════════════════════════════╗ | |
| ║ openscad 2015.03+dfsg-1 (amd64) 11 Mar 2015 00:49 ║ | |
| ╚══════════════════════════════════════════════════════════════════════════════╝ | |
| Package: openscad | |
| Version: 2015.03+dfsg-1 | |
| Source Version: 2015.03+dfsg-1 | |
| Distribution: unstable |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head><title>Test run for linux_x86_64_gallium-0.4-on-llvmpipe_esws</title> | |
| <style> | |
| body { | |
| color: black; | |
| } | |
| table { | |
| border-collapse: collapse; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit 0f28196441d72ecb9b593bddc7da866fcd3fe2bf | |
| Author: chrysn <chrysn@fsfe.org> | |
| Date: Fri Jun 21 15:22:54 2013 +0200 | |
| make more tests work | |
| diff --git a/debian/changelog b/debian/changelog | |
| index d81a2d4..7f66fc7 100644 | |
| --- a/debian/changelog | |
| +++ b/debian/changelog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use <MCAD/general/sweep.scad> | |
| use <MCAD/general/facets.scad> | |
| use <scad-utils/shapes.scad> | |
| use <scad-utils/transformations.scad> | |
| $fs = 0.4; | |
| $fa = 1; | |
| function cot (angle) = 1 / tan (angle); |