Skip to content

Commit 607c82e

Browse files
committed
Switch angle text color from red to black
Signed-off-by: TobiPeterG <github.threefold020@passmail.net>
1 parent 144c795 commit 607c82e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mechanismaf/components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def add_angle_joints_texts(mech, ani, ax):
190190
continue
191191
# Create a text annotation near the bar.
192192
txt = ax.text(joint.x_pos or 0, joint.y_pos or 0, "",
193-
fontsize=8, color="red")
193+
fontsize=8, color="black")
194194
angle_texts[(joint.name, other.name)] = txt
195195

196196
# Build the set of joints to annotate with joint names.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="mechanismaf",
5-
version="0.1.2",
5+
version="0.1.3",
66
description="A wrapper around the 'mechanism' library for the 'Algorithm Folding' lecture @ HPI for creating and transforming linkage mechanisms.",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)