Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
22045b61
Commit
22045b61
authored
Oct 14, 2013
by
Maciej Suminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Converted tabs to spaces. Removed trailing whitespaces.
parent
ac489ece
Changes
39
Show whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
2924 additions
and
2925 deletions
+2924
-2925
drawpanel_gal.cpp
common/drawpanel_gal.cpp
+20
-20
color4d.cpp
common/gal/color4d.cpp
+2
-3
opengl_gal.cpp
common/gal/opengl/opengl_gal.cpp
+1
-1
shader.frag
common/gal/opengl/shader.frag
+1
-1
shader.vert
common/gal/opengl/shader.vert
+8
-8
seg.cpp
common/geometry/seg.cpp
+60
-60
shape_collisions.cpp
common/geometry/shape_collisions.cpp
+155
-155
shape_line_chain.cpp
common/geometry/shape_line_chain.cpp
+362
-362
fcontext.s
common/system/fcontext.s
+3
-3
make_i386_pe_gas.S
common/system/make_i386_pe_gas.S
+33
-33
context_menu.cpp
common/tool/context_menu.cpp
+21
-21
tool_base.cpp
common/tool/tool_base.cpp
+5
-5
tool_dispatcher.cpp
common/tool/tool_dispatcher.cpp
+168
-168
tool_event.cpp
common/tool/tool_event.cpp
+89
-89
tool_interactive.cpp
common/tool/tool_interactive.cpp
+8
-8
tool_manager.cpp
common/tool/tool_manager.cpp
+165
-165
class_drawpanel_gal.h
include/class_drawpanel_gal.h
+1
-1
color4d.h
include/gal/color4d.h
+1
-1
shader.h
include/gal/opengl/shader.h
+5
-5
seg.h
include/geometry/seg.h
+266
-266
shape.h
include/geometry/shape.h
+97
-97
shape_circle.h
include/geometry/shape_circle.h
+34
-34
shape_index.h
include/geometry/shape_index.h
+4
-4
shape_index_list.h
include/geometry/shape_index_list.h
+218
-218
shape_line_chain.h
include/geometry/shape_line_chain.h
+494
-494
shape_rect.h
include/geometry/shape_rect.h
+109
-109
box2.h
include/math/box2.h
+2
-2
vector2d.h
include/math/vector2d.h
+1
-1
context_menu.h
include/tool/context_menu.h
+94
-94
coroutine.h
include/tool/coroutine.h
+152
-152
delegate.h
include/tool/delegate.h
+54
-54
coroutine_example.cpp
include/tool/examples/coroutine_example.cpp
+31
-31
delegate_example.cpp
include/tool/examples/delegate_example.cpp
+18
-18
tool_base.h
include/tool/tool_base.h
+117
-117
tool_dispatcher.h
include/tool/tool_dispatcher.h
+3
-3
tool_event.h
include/tool/tool_event.h
+54
-54
tool_interactive.h
include/tool/tool_interactive.h
+67
-67
view_controls.h
include/view/view_controls.h
+1
-1
edit.cpp
pcbnew/edit.cpp
+0
-0
No files found.
common/drawpanel_gal.cpp
View file @
22045b61
common/gal/color4d.cpp
View file @
22045b61
...
@@ -159,7 +159,6 @@ void COLOR4D::FromHSV( double aInH, double aInS, double aInV )
...
@@ -159,7 +159,6 @@ void COLOR4D::FromHSV( double aInH, double aInS, double aInV )
b
=
q
;
b
=
q
;
break
;
break
;
}
}
}
}
...
...
common/gal/opengl/opengl_gal.cpp
View file @
22045b61
common/gal/opengl/shader.frag
View file @
22045b61
common/gal/opengl/shader.vert
View file @
22045b61
common/geometry/seg.cpp
View file @
22045b61
common/geometry/shape_collisions.cpp
View file @
22045b61
common/geometry/shape_line_chain.cpp
View file @
22045b61
common/system/fcontext.s
View file @
22045b61
common/system/make_i386_pe_gas.S
View file @
22045b61
common/tool/context_menu.cpp
View file @
22045b61
common/tool/tool_base.cpp
View file @
22045b61
common/tool/tool_dispatcher.cpp
View file @
22045b61
common/tool/tool_event.cpp
View file @
22045b61
common/tool/tool_interactive.cpp
View file @
22045b61
common/tool/tool_manager.cpp
View file @
22045b61
include/class_drawpanel_gal.h
View file @
22045b61
include/gal/color4d.h
View file @
22045b61
include/gal/opengl/shader.h
View file @
22045b61
include/geometry/seg.h
View file @
22045b61
include/geometry/shape.h
View file @
22045b61
include/geometry/shape_circle.h
View file @
22045b61
include/geometry/shape_index.h
View file @
22045b61
include/geometry/shape_index_list.h
View file @
22045b61
include/geometry/shape_line_chain.h
View file @
22045b61
include/geometry/shape_rect.h
View file @
22045b61
include/math/box2.h
View file @
22045b61
include/math/vector2d.h
View file @
22045b61
include/tool/context_menu.h
View file @
22045b61
include/tool/coroutine.h
View file @
22045b61
include/tool/delegate.h
View file @
22045b61
include/tool/examples/coroutine_example.cpp
View file @
22045b61
include/tool/examples/delegate_example.cpp
View file @
22045b61
include/tool/tool_base.h
View file @
22045b61
include/tool/tool_dispatcher.h
View file @
22045b61
include/tool/tool_event.h
View file @
22045b61
include/tool/tool_interactive.h
View file @
22045b61
include/view/view_controls.h
View file @
22045b61
pcbnew/edit.cpp
100755 → 100644
View file @
22045b61
File mode changed from 100755 to 100644
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment