From c63c3a86543499c5d5ba3cd477e01be0be876c58 Mon Sep 17 00:00:00 2001 From: Billingsly Wetherfordshire Date: Sat, 14 Feb 2015 17:14:06 -0600 Subject: [PATCH 1/5] Update website.ini generate docs for basic2d,basic3d --- web/website.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/web/website.ini b/web/website.ini index c0a648c562..6757abcd85 100644 --- a/web/website.ini +++ b/web/website.ini @@ -61,6 +61,7 @@ srcdoc2: "pure/rawsockets;pure/asynchttpserver;pure/net;pure/selectors;pure/futu srcdoc2: "pure/md5" srcdoc2: "posix/posix" srcdoc2: "pure/fenv" +srcdoc2: "pure/basic2d;pure/basic3d" ; Note: everything under 'webdoc' doesn't get listed in the index, so wrappers ; should live here From e22ae986f934fa0b1700cbaede89fa762ef16477 Mon Sep 17 00:00:00 2001 From: Billingsly Wetherfordshire Date: Sat, 14 Feb 2015 17:15:30 -0600 Subject: [PATCH 2/5] Update basic3d.nim fix rst error --- lib/pure/basic3d.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/basic3d.nim b/lib/pure/basic3d.nim index c00764fc5b..9a8e006ec3 100644 --- a/lib/pure/basic3d.nim +++ b/lib/pure/basic3d.nim @@ -812,7 +812,7 @@ proc bisect*(v1,v2:TVector3d):TVector3d {.noInit.}= ## Computes the bisector between v1 and v2 as a normalized vector. ## If one of the input vectors has zero length, a normalized version ## of the other is returned. If both input vectors has zero length, - ## an arbitrary normalized vector `v1`is returned. + ## an arbitrary normalized vector `v1` is returned. var vmag1=v1.len vmag2=v2.len From 706544c63cf90d62a8c26a9cb6f8f96e5b478a73 Mon Sep 17 00:00:00 2001 From: Billingsly Wetherfordshire Date: Sat, 14 Feb 2015 17:19:13 -0600 Subject: [PATCH 3/5] Update lib.txt add basic2d/3d to standard libraries list --- doc/lib.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/lib.txt b/doc/lib.txt index b7c94b505a..6897f71e08 100644 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -189,6 +189,12 @@ Math libraries Floating-point environment. Handling of floating-point rounding and exceptions (overflow, zero-devide, etc.). +* `basic2d `_ + Basic 2d support with vectors, points, matrices and some basic utilities. + +* `basic3d `_ + Basic 3d support with vectors, points, matrices and some basic utilities. + Internet Protocols and Support ------------------------------ From 8ed31ffd2b8cd0605c7db764e951b025129696bc Mon Sep 17 00:00:00 2001 From: Billingsly Wetherfordshire Date: Sat, 14 Feb 2015 17:20:21 -0600 Subject: [PATCH 4/5] Update lib.txt removed IRC module from mention on lib.html --- doc/lib.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/doc/lib.txt b/doc/lib.txt index 6897f71e08..da45afea66 100644 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -52,7 +52,7 @@ Core Locks and condition variables for Nim. * `macros `_ - Contains the AST API and documentation of Nim for writing macros. + Contains the AST API and documentation of Nim for writing macros.i * `typeinfo `_ Provides (unsafe) access to Nim's run time type information. @@ -224,9 +224,6 @@ Internet Protocols and Support * `smtp `_ This module implement a simple SMTP client. -* `irc `_ - This module implements an asynchronous IRC client. - * `ftpclient `_ This module implements an FTP client. From 78cae0dd45f41f795a4876f9b31c058fbd3b97c1 Mon Sep 17 00:00:00 2001 From: Billingsly Wetherfordshire Date: Sat, 14 Feb 2015 17:21:20 -0600 Subject: [PATCH 5/5] Update lib.txt oops --- doc/lib.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/lib.txt b/doc/lib.txt index da45afea66..4185e6f749 100644 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -52,7 +52,7 @@ Core Locks and condition variables for Nim. * `macros `_ - Contains the AST API and documentation of Nim for writing macros.i + Contains the AST API and documentation of Nim for writing macros. * `typeinfo `_ Provides (unsafe) access to Nim's run time type information.