jascamMigrationTest / WorkItemMigration

0 stars 0 forks source link

Task 11: Markers #13

Open jascam opened 6 years ago

jascam commented 6 years ago

Implement the support for markers or custom arrows.

Attachments

A_Test_Case.svg A tim test.svg

This work item was migrated from CodePlex

CodePlex work item ID: '417' Vote count: '1'

jascam commented 6 years ago

[zfeld75@1/13/2012] There seem to be issues with transformations (in scaling and translating) See attached file A_Test_Case.svg.

jascam commented 6 years ago

[UnknownUser@1/13/2012]

jascam commented 6 years ago

[zfeld75@1/13/2012] Also the auto rotation (orient = "auto") seems to not be orienting properly. See attached file

jascam commented 6 years ago

[SelormeyPaul@1/14/2012] Thanks for the test samples.

jascam commented 6 years ago

[zfeld75@3/26/2012] I think the orientation issue is simple in SharpVectorModel/Paths/SvgPathSegLineto.cs comment out line 40. There is no reason to add 270 to the angle. I am still struggling with the scaling issue. Do you have any plans to look into this in the near future

jascam commented 6 years ago

[zfeld75@3/27/2012] Found another issue. line 321 in WPFMarkerRendering.cs in SharpRenderingWPF/WPF if(MarkerElm.MarkerUnits.AnimVal.Equals(SvgMarkerUnit.StrokedWidth) ) will never evaluate to true. Need to cast the enum to ushort if(MarkerElm.MarkerUnits.AnimVal.Equals( (ushort) SvgMarkerUnit.StrokedWidth) )

However this isn't "The Fix" it is still broken. I could use help. Please....... Thanks

jascam commented 6 years ago

[zfeld75@3/29/2012] I found another couple of fixes. Is there any way for me to share them with you other then this comment section?

jascam commented 6 years ago

[UnknownUser@2/14/2013]