Doc: Change links to https
This commit is contained in:
parent
ede8546167
commit
47b3bf83a3
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# Copyright (C) 2007 Aaron Spike (aaron @ ekips.org)
|
# Copyright (C) 2007 Aaron Spike (aaron @ ekips.org)
|
||||||
# Copyright (C) 2007 Tavmjong Bah (tavmjong @ free.fr)
|
# Copyright (C) 2007 Tavmjong Bah (tavmjong @ free.fr)
|
||||||
# Copyright (C) http://cnc-club.ru/forum/viewtopic.php?f=33&t=434&p=2594#p2500
|
# Copyright (C) https://cnc-club.ru/forum/viewtopic.php?f=33&t=434&p=2594#p2500
|
||||||
# Copyright (C) 2014 Jürgen Weigert (juewei@fabmail.org)
|
# Copyright (C) 2014 Jürgen Weigert (juewei@fabmail.org)
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
# 2014-04-05 juewei 0.7a Correctly positioned rack gear.
|
# 2014-04-05 juewei 0.7a Correctly positioned rack gear.
|
||||||
# The geometry above the meshing line is wrong.
|
# The geometry above the meshing line is wrong.
|
||||||
# 2014-04-06 juewei 0.7b Undercut detection added. Reference:
|
# 2014-04-06 juewei 0.7b Undercut detection added. Reference:
|
||||||
# http://nptel.ac.in/courses/IIT-MADRAS/Machine_Design_II/pdf/2_2.pdf
|
# https://web.archive.org/web/20140801105942/https://nptel.ac.in/courses/IIT-MADRAS/Machine_Design_II/pdf/2_2.pdf
|
||||||
# Manually merged https://github.com/jnweiger/inkscape-gears-dev/pull/15
|
# Manually merged https://github.com/jnweiger/inkscape-gears-dev/pull/15
|
||||||
# 2014-04-07 juewei 0.7c Manually merged https://github.com/jnweiger/inkscape-gears-dev/pull/17
|
# 2014-04-07 juewei 0.7c Manually merged https://github.com/jnweiger/inkscape-gears-dev/pull/17
|
||||||
# 2014-04-09 juewei 0.8 Fixed https://github.com/jnweiger/inkscape-gears-dev/issues/19
|
# 2014-04-09 juewei 0.8 Fixed https://github.com/jnweiger/inkscape-gears-dev/issues/19
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
// by droftarts January 2012
|
// by droftarts January 2012
|
||||||
|
|
||||||
// Based on pulleys by:
|
// Based on pulleys by:
|
||||||
// http://www.thingiverse.com/thing:11256 by me!
|
// https://www.thingiverse.com/thing:11256 by me!
|
||||||
// https://github.com/prusajr/PrusaMendel by Josef Prusa
|
// https://github.com/prusajr/PrusaMendel by Josef Prusa
|
||||||
// http://www.thingiverse.com/thing:3104 by GilesBathgate
|
// https://www.thingiverse.com/thing:3104 by GilesBathgate
|
||||||
// http://www.thingiverse.com/thing:2079 by nophead
|
// https://www.thingiverse.com/thing:2079 by nophead
|
||||||
|
|
||||||
// dxf tooth data from http://oem.cadregister.com/asp/PPOW_Entry.asp?company=915217&elementID=07807803/METRIC/URETH/WV0025/F
|
// dxf tooth data from http://oem.cadregister.com/asp/PPOW_Entry.asp?company=915217&elementID=07807803/METRIC/URETH/WV0025/F
|
||||||
// pulley diameter checked and modelled from data at http://www.sdp-si.com/D265/HTML/D265T016.html
|
// pulley diameter checked and modelled from data at https://www.sdp-si.com/D265/HTML/D265T016.html
|
||||||
"""
|
"""
|
||||||
from math import *
|
from math import *
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue