Revision 899973e27fd356980a0d81372d577a9d1a3472a3 authored by Joost van Griethuysen on 19 October 2018, 12:50:47 UTC, committed by Joost van Griethuysen on 19 October 2018, 12:50:47 UTC
Fix typos
Add basic representation of cube/square in the algorithm
1 parent 8ef7c8e
Raw File
.editorconfig
# EditorConfig: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[**]
end_of_line = lf
insert_final_newline = true

# Set default charset
[**.py]
indent_style = space
indent_size = 2
charset = utf-8

# Set indentation for C
[**.{c,h}]
indent_style = space
indent_size = 2

# Tab indentation (no size specified)
[**CMakeLists.txt]
indent_style = space
indent_size = 2
back to top