Allow <1 dashdot values #28

Merged
root merged 1 commit from pastk-small-dashdots into master 2023-11-26 01:17:59 +00:00
Member
No description provided.
vng (Migrated from github.com) reviewed 2023-11-23 18:04:59 +00:00
vng (Migrated from github.com) reviewed 2023-11-25 17:18:55 +00:00
@ -754,3 +748,3 @@
dr_line = LineRuleProto()
dr_line.width = (st.get('width', 0) * WIDTH_SCALE)
dr_line.width = st.get('width', 0)
dr_line.color = mwm_encode_color(colors, st)
vng (Migrated from github.com) commented 2023-11-25 17:18:52 +00:00

WIDTH_SCALE not needed ?

WIDTH_SCALE not needed ?
vng (Migrated from github.com) reviewed 2023-11-25 17:22:33 +00:00
@ -754,3 +748,3 @@
dr_line = LineRuleProto()
dr_line.width = (st.get('width', 0) * WIDTH_SCALE)
dr_line.width = st.get('width', 0)
dr_line.color = mwm_encode_color(colors, st)
vng (Migrated from github.com) commented 2023-11-25 17:22:33 +00:00

UPD: WIDTH_SCALE == 1. I'd keep it for consistency with other values.

UPD: WIDTH_SCALE == 1. I'd keep it for consistency with other values.
pastk reviewed 2023-11-25 18:21:40 +00:00
@ -754,3 +748,3 @@
dr_line = LineRuleProto()
dr_line.width = (st.get('width', 0) * WIDTH_SCALE)
dr_line.width = st.get('width', 0)
dr_line.color = mwm_encode_color(colors, st)
Author
Member

Effectively WIDTH_SCALE is not used anywhere (an looks like never was used), so I see no point in keeping it in the code.

I can remove all usages of it (its just a few) at once in this PR for consistency. WDYT?

Effectively `WIDTH_SCALE` is not used anywhere (an looks like never was used), so I see no point in keeping it in the code. I can remove all usages of it (its just a few) at once in this PR for consistency. WDYT?
vng (Migrated from github.com) reviewed 2023-11-25 20:06:46 +00:00
@ -754,3 +748,3 @@
dr_line = LineRuleProto()
dr_line.width = (st.get('width', 0) * WIDTH_SCALE)
dr_line.width = st.get('width', 0)
dr_line.color = mwm_encode_color(colors, st)
vng (Migrated from github.com) commented 2023-11-25 20:06:45 +00:00

Remove if you think it will not be used.

Remove if you think it will not be used.
pastk reviewed 2023-11-25 20:21:37 +00:00
@ -754,3 +748,3 @@
dr_line = LineRuleProto()
dr_line.width = (st.get('width', 0) * WIDTH_SCALE)
dr_line.width = st.get('width', 0)
dr_line.color = mwm_encode_color(colors, st)
Author
Member

Done

Done
vng commented 2023-11-25 21:02:27 +00:00 (Migrated from github.com)

Did you generate? No problem with int-float conversion?

Did you generate? No problem with int-float conversion?
Author
Member

Yes I regenerated and there are no conversion problems.

Yes I regenerated and there are no conversion problems.
Sign in to join this conversation.
No description provided.