User:Chrissy/projects/pen plotting: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
<big><big>'''some pen plotting experiments during special issue 25'''</big></big>
<big><big>'''some pen plotting experiments during special issue 26'''</big></big>


===images===
===images===
[[File:PenPlotting SI26 02.jpg|thumb|adapterπŸ™ƒ]]
<gallery mode="nolines" perrow="2" widths="450" heights="250">
[[File:PenPlotting SI26 01.jpg|thumb|issues with the first test; all the squares were printed in one. process looked cool tho]]
File:PenPlotting SI26 02.jpg|thumb|adapterπŸ™ƒ
File:PenPlotting SI26 01.jpg|thumb|issues with the first test; all the squares were printed in one. <br> process looked cool tho
File:PenPlotting SI26 03.jpg|thumb|pattern code + terminal
File:PenPlotting SI26 04.jpg|thumb|typo tryouts with Roland DG X-Y Plotter DXY-980A
File:PenPlotting SI26 05.jpg|thumb
File:PenPlotting SI26 06.jpg|thumb|final patternsss :))
File:PenPlotting SI26 07.jpg|thumb|πŸ”Ž
</gallery>


===note===
rly want to experiment with this printer way more, because it's possible to use any pen, since the holder is broken & pens are attached by tape. Endless possibilities :)))


 
===some scripts for patterns we tried out===
===some scripts for patterns===
 
<syntaxhighlight>
<syntaxhighlight>
FT 1 / FT2
FT 1 / FT2
Line 19: Line 26:
PA60,60;
PA60,60;
RA100,100;
RA100,100;


RA(Fill Rectangle Absolute)
RA(Fill Rectangle Absolute)
Line 36: Line 42:
PD2500,4050;
PD2500,4050;
PU;
PU;


PD1000,1000;
PD1000,1000;
Line 58: Line 60:
LPRINT "LB";A;B;CHR$(3)
LPRINT "LB";A;B;CHR$(3)
PU;
PU;


GRID
GRID
Line 81: Line 82:
EW50,330,120;
EW50,330,120;
PU;
PU;


Big Rectangle filled
Big Rectangle filled
Line 94: Line 94:


===helpful screenshots for running===
===helpful screenshots for running===
<gallery mode="nolines" perrow="2" widths="450" heights="250">
File:PenPlotting SI26 08.png
File:PenPlotting SI26 09.png
File:PenPlotting SI26 10.png
</gallery>

Latest revision as of 13:34, 21 March 2025

some pen plotting experiments during special issue 26

images

note

rly want to experiment with this printer way more, because it's possible to use any pen, since the holder is broken & pens are attached by tape. Endless possibilities :)))

some scripts for patterns we tried out

FT 1 / FT2

RA40,40;
SP2;

/

PA60,60;
RA100,100;

RA(Fill Rectangle Absolute)
 It is used with FT and PT command and shading of the inside of rectangle

-PA(Plot Absolute)
 Pen is moved to position of absolute coordinate (x, y).

FUNNY 

IN; IP0;
PD3550,3700;
PD3550,7500;
PD7550,6500;
PD6500,3500; 
PD2500,4050;
PU;

PD1000,1000;
SI1,2;
DT$,0;
LBHello World$;
PU;

PD1000,100;
SI0.5,1;
DT$,0;
LBHello World$;
PU;


PD1000,10000;
LPRINT "LB hello everyone";
LPRINT "LB";A;B;CHR$(3)
PU;

GRID

PU6010,5010;
FT4,70,30;
RA2000,1000;
PU;

DIAGRAM

IN;IP0,0,4000,4000;SC0,100,0,100;
PU;PA50,50;
FT3,5;
WG50,90,180;
FT4,5,45;
WG50,270,60;
FT1;
WG50,330,120;
EW50,90,180;
EW50,270,60;
EW50,330,120;
PU;

Big Rectangle filled

IN;IP0,0,4000,4000;SC0,100,0,100;
PU;PA3000,3000;
FT2;
PA10,10;
RA100,100;
PU;

helpful screenshots for running