Game Lines
Technologies used in project: Java SE, Swing.
Each player in his turn draws a straight line connecting the unconnected vertices. Each player has a different color for the segment. Loses the one who first builds a triangle from its own segments.

A little explanation.
The first move, if it makes a computer, is not important: all direct are equivalent. After that, the computer does not have more than 29 possible lines, and he studies them all. Computer compares the weight each of them:
- the segment closes the losing triangle;
- a segment closes a triangle, two sides of which belong to my opponent;
- the segment is closed by a mixed triangle (one side of which is mine and the other one is my opponent);
- the segment connects two mixed vertices (from each of them comes my side, and also the side of my opponent);
- the segment connects the mixed vertex and the vertex from which only one side leaves;
- a segment connects two vertices, each of which belongs to only one segment, which I spent;
- a segment connects two peaks, each of which belongs to only one segment, one of which I spent, and the other – my opponent;
- a segment connects two vertices, which do not belong to the segments I have drawn;
- the segment passes through a “clean” (not yet used) vertex;
- a segment connects a clean vertex with a vertex that does not belong to my segments;
- a segment connects two pure vertices.
The computer makes the move with the greatest weight.