Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit a6c160d

Browse files
committed
Fix typos
Found via `codespell -q 3`
1 parent 619a196 commit a6c160d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Pure-Data/fc_client-help.pd

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
#X text 15 311 more :;
1010
#X obj 65 312 helplink FCPD;
1111
#X text 10 200 no inlet;
12-
#X text 10 240 1 outlet : last max process time (usefull to calibrate
12+
#X text 10 240 1 outlet : last max process time (useful to calibrate
1313
animation);

Pure-Data/fc_client.pd

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
14 #e0e0e0 #404040 0;
1616
#X obj 644 275 cnv 15 551 261 empty empty Wait\ for\ callback\ (synchronize\ FC\ and\ PD)
1717
20 12 0 14 #e0e0e0 #404040 0;
18-
#X obj 790 130 cnv 15 217 101 empty empty Incomming\ message 20 12
18+
#X obj 790 130 cnv 15 217 101 empty empty Incoming\ message 20 12
1919
0 14 #e0e0e0 #404040 0;
2020
#X obj 1140 40 cnv 15 240 150 empty empty Callback 20 12 0 14 #e0e0e0
2121
#404040 0;

Pure-Data/fc_vector-help.pd

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
#X text 10 40 Create a FreeCAD-compatible vector message from coordinates
1010
;
1111
#X obj 370 10 fc_vector;
12-
#X text 10 80 3 arguments to intialize X \, Y and Z;
12+
#X text 10 80 3 arguments to initialize X \, Y and Z;
1313
#X text 10 120 1st inlet : X or bang to output the last vector;

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## FreeCAD/PureData connection framework
22

3-
FCPD is a set of [FreeCAD](https://github.com/FreeCAD/FreeCAD) python macros and [Pure-Data](https://github.com/pure-data/pure-data) (aka PD) patches to link the two softwares.
3+
FCPD is a set of [FreeCAD](https://github.com/FreeCAD/FreeCAD) python macros and [Pure-Data](https://github.com/pure-data/pure-data) (aka PD) patches to link the two software.
44

55
This repository is no more maintained, please use [FCPDWorkbench](https://github.com/FlachyJoe/FCPDWorkbench).
66

@@ -37,8 +37,8 @@ See [Sample/PdAccessObjectProperties.FCMacro](Sample/PdAccessObjectProperties.FC
3737

3838
* Import the pdserver module in your macro
3939
* instantiate a `pdserver.PureDataServer` object with address and port to listen to as constructor arguments
40-
* set the default message handler i.e. function which take the incomming message as argument and return a stringable value to give back to Pure-Data
41-
* with message handler registration system you can use different function depending of the first word of the incomming message. Simply call `PureDataServer.register_message_handler([first_word], function_to_call)`
40+
* set the default message handler i.e. function which take the incoming message as argument and return a stringable value to give back to Pure-Data
41+
* with message handler registration system you can use different function depending of the first word of the incoming message. Simply call `PureDataServer.register_message_handler([first_word], function_to_call)`
4242
* run the server with `pureDataServer.run()`
4343

4444
### On Pure-Data side
@@ -59,7 +59,7 @@ PD objects are documented. Access help via Right mouse button(RMB) > Help
5959

6060
Pure-Data messages are text only so the FreeCAD objects have to be converted to and from string to be processed with Pure-Data.
6161

62-
The PureDataServer object automaticaly remove non-conform characters of the callback message i.e. `,` and `=` are converted to space and `';()\[\]{}"` are removed. In this way the `Base.Vector` python object whose string representation is `Vector(0.0,0.0,0.0)` can be a return value of a message handler and converted to `Vector 0.0 0.0 0.0` PD message.
62+
The PureDataServer object automatically remove non-conform characters of the callback message i.e. `,` and `=` are converted to space and `';()\[\]{}"` are removed. In this way the `Base.Vector` python object whose string representation is `Vector(0.0,0.0,0.0)` can be a return value of a message handler and converted to `Vector 0.0 0.0 0.0` PD message.
6363

6464
## Feedback
6565

Sample/animate.pd

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#X text 442 595 new Pos;
3333
#X text 396 630 update Placement;
3434
#X text 321 663 set new Placement to object;
35-
#X text 119 425 go to 2*X0 in 1sec \; (\$1 is incomming float);
35+
#X text 119 425 go to 2*X0 in 1sec \; (\$1 is incoming float);
3636
#X text 613 279 Rotation is not used;
3737
#X text 128 498 rampe object \; initialized with 50ms step;
3838
#X obj 425 398 pipe 1000;

0 commit comments

Comments
 (0)