Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Partial drawing of any Object #469

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
d58939c
partial strokes work , fill is instantaneous for now
ArbitRandomUser Feb 17, 2022
e627761
fixed the right position for strokelength() in overdub
ArbitRandomUser Feb 18, 2022
930dcf1
closed open polynomials fix
ArbitRandomUser Feb 20, 2022
57ea91e
Merge branch 'main' into PartialDraw_branch1
ArbitRandomUser Feb 28, 2022
ef260df
draw_partial() can be passed to Action now
ArbitRandomUser Mar 1, 2022
4ee68bf
draw partial works in Actions
ArbitRandomUser Mar 2, 2022
07cc06a
draw partial works with actions
ArbitRandomUser Mar 2, 2022
995dc3e
removed infilt
ArbitRandomUser Mar 2, 2022
7289859
fill is animated
ArbitRandomUser Mar 3, 2022
12447aa
Cassette added
ArbitRandomUser Mar 3, 2022
d692c07
removed fade-in for fill , changed overrides to parse(RGBA,col) inste…
ArbitRandomUser Mar 4, 2022
76a397d
added some documentation
ArbitRandomUser Mar 4, 2022
0510921
Merge branch 'JuliaAnimators:main' into PartialDraw_branch1
ArbitRandomUser Mar 4, 2022
fdcace3
removed commented imports and includes in src/Javis.jl
ArbitRandomUser Mar 4, 2022
741f28c
HueShift works now
ArbitRandomUser Mar 4, 2022
9f85701
added some TODO and updated docstrings
ArbitRandomUser Mar 5, 2022
c34d467
precomputing poly distances
ArbitRandomUser Mar 6, 2022
81fb577
formate
ArbitRandomUser Mar 6, 2022
d429f4a
fixed poinstlist bug , fixed counter bug
ArbitRandomUser Mar 13, 2022
02c3829
format :|
ArbitRandomUser Mar 13, 2022
f752870
fixed bug in fill preserve
ArbitRandomUser Mar 14, 2022
283e53c
format and part_i fix
ArbitRandomUser Mar 14, 2022
6210a5d
removed print
ArbitRandomUser Mar 14, 2022
108da58
added tests
ArbitRandomUser Mar 14, 2022
1542a59
format
ArbitRandomUser Mar 14, 2022
2bd0601
removed imports in test/showcreation.jl
ArbitRandomUser Mar 14, 2022
7f91e49
fixed test names in test/showcreation.jl
ArbitRandomUser Mar 14, 2022
d2e7009
Cassette.jl version added
ArbitRandomUser Mar 14, 2022
a18d67b
dp_state made const
ArbitRandomUser Mar 14, 2022
a0a5c72
removed comments
ArbitRandomUser Mar 14, 2022
8a69860
fixed docstrings
ArbitRandomUser Mar 14, 2022
b86adad
changed multiline comments to #= instead of """
ArbitRandomUser Mar 14, 2022
152e042
elaborated mroe on show_creation in dosctring
ArbitRandomUser Mar 14, 2022
968ec57
fixed show_creation dosctring
ArbitRandomUser Mar 14, 2022
d6db788
minor fix in docstring
ArbitRandomUser Mar 14, 2022
10064c3
minor fix in docstring
ArbitRandomUser Mar 14, 2022
b5bc452
minor fix in docstring
ArbitRandomUser Mar 14, 2022
9bde0dd
minor fix in docstring
ArbitRandomUser Mar 14, 2022
57f3e28
strokepreserve draws additional path
ArbitRandomUser Mar 15, 2022
b0ad1fe
strokepreserve draws additional path
ArbitRandomUser Mar 15, 2022
f44c577
more tests
ArbitRandomUser Mar 15, 2022
8483482
format
ArbitRandomUser Mar 15, 2022
fc57d38
move to point on single point poly
ArbitRandomUser Mar 15, 2022
34df4ce
strokepreserve doesnt need "additional_path", i was wrong in commit b…
ArbitRandomUser Mar 15, 2022
aaeaae1
strokepreserve test fixed
ArbitRandomUser Mar 15, 2022
4fcced0
showcreation test fix
ArbitRandomUser Mar 15, 2022
6b5ab76
format
ArbitRandomUser Mar 15, 2022
8ab7a84
changelog
ArbitRandomUser Mar 15, 2022
626e1c9
format
ArbitRandomUser Mar 15, 2022
b8b2bc3
Merge branch 'main' into PartialDraw_branch1
ArbitRandomUser Mar 17, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Javis.jl - Changelog

## Unmerged
- show\_creation to incrementally show creation of object as its drawn.

##for PR
- change font scaling in svg2luxor from 1/2 to 425/1000
- change default line width to 2.0 like luxor
Expand Down
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ version = "0.8.0"
[deps]
Animations = "27a7e980-b3e6-11e9-2bcd-0b925532e340"
Cairo = "159f3aea-2a34-519c-b102-8c37f9878175"
Cassette = "7057c7e9-c182-5462-911a-8362d720325c"
ArbitRandomUser marked this conversation as resolved.
Show resolved Hide resolved
FFMPEG = "c87230d0-a227-11e9-1b43-d7ebe4e7570a"
Gtk = "4c0ca9eb-093a-5379-98c5-f87ac0bbbf44"
GtkReactive = "27996c0f-39cd-5cc1-a27a-05f136f946b6"
Expand All @@ -25,6 +26,7 @@ VideoIO = "d6d074c3-1acf-5d4c-9a43-ef38773959a2"
[compat]
Animations = "0.4"
Cairo = "1"
Cassette = "0.3.8"
FFMPEG = "0.3, 0.4"
Gtk = "1.1"
GtkReactive = "1.0.3"
Expand Down
1 change: 1 addition & 0 deletions src/Javis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ include("action_animations.jl")
include("javis_viewer.jl")
include("latex.jl")
include("object_values.jl")
include("draw_partial.jl")

"""
projection(p::Point, l::Line)
Expand Down
Loading