Search found 4 matches

by Roel
Fri Aug 21, 2020 1:49 pm
Forum: Graphics, Figures & Tables
Topic: dots and tikz-3dplot
Replies: 2
Views: 3706

dots and tikz-3dplot

Thanks a lot, Bartman.
You really helped me!
by Roel
Wed Aug 19, 2020 6:16 pm
Forum: Graphics, Figures & Tables
Topic: dots and tikz-3dplot
Replies: 2
Views: 3706

dots and tikz-3dplot

Hello

I'm using tikz-3dplot to draw a 3d coordinate system and would like to draw dots (small spheres).
With the 2d method I normally use (\draw (0,0) circle (2pt) ), the output is a circle in the xy-plane (an ellipse). Not what I want.

Anyone any idea how to solve that?

\documentclass ...
by Roel
Fri Apr 03, 2020 9:38 am
Forum: Graphics, Figures & Tables
Topic: counter and if
Replies: 2
Views: 1409

counter and if

Wow, thanks for this answer. It was the answer I needed and you helped me a lot.
by Roel
Thu Apr 02, 2020 3:41 pm
Forum: Graphics, Figures & Tables
Topic: counter and if
Replies: 2
Views: 1409

counter and if

Hello

Having the following, working code


\begin{tikzpicture}[x=.5cm,y=.5cm]
\foreach \x in {1, 2, 3, 4, 8, 9, 10, 11} {
\foreach \y in {1, 2, 3, 4, 5}{
\fill [white] (\x,\y) circle (0.3);
\draw [TheColor] (\x,\y) circle (0.3);
}
}
\end{tikzpicture}

I would like to add a counter and an if ...