Skip to content

Commit cac19e9

Browse files
committed
create
0 parents  commit cac19e9

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.png filter=lfs diff=lfs merge=lfs -text

.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Uncomment these types if you want even more clean repository. But be careful.
2+
# It can make harm to an existing project source. Read explanations below.
3+
#
4+
# Resource files are binaries containing manifest, project icon and version info.
5+
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6+
#*.res
7+
#
8+
# Type library file (binary). In old Delphi versions it should be stored.
9+
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10+
#*.tlb
11+
#
12+
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13+
# Uncomment this if you are not using diagrams or use newer Delphi version.
14+
#*.ddp
15+
#
16+
# Visual LiveBindings file. Added in Delphi XE2.
17+
# Uncomment this if you are not using LiveBindings Designer.
18+
#*.vlb
19+
#
20+
# Deployment Manager configuration file for your project. Added in Delphi XE2.
21+
# Uncomment this if it is not mobile development and you do not use remote debug feature.
22+
#*.deployproj
23+
#
24+
25+
# Delphi compiler-generated binaries (safe to delete)
26+
*.exe
27+
#*.dll
28+
*.bpl
29+
*.bpi
30+
*.dcp
31+
*.so
32+
*.apk
33+
*.drc
34+
*.map
35+
*.dres
36+
*.rsm
37+
*.tds
38+
*.dcu
39+
*.lib
40+
41+
# Delphi autogenerated files (duplicated info)
42+
*.cfg
43+
*Resource.rc
44+
45+
# Delphi local files (user-specific info)
46+
*.local
47+
*.identcache
48+
*.projdata
49+
*.tvsconfig
50+
*.dsk
51+
52+
# Delphi history and backups
53+
__history/
54+
__recovery/
55+
*.~*
56+
57+
# Castalia statistics file
58+
*.stat

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Delaunay2D
2+
Delaunay diagram in 2D for Delphi.

0 commit comments

Comments
 (0)