You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
I've tried to run your code example with main and faced an error:
AttributeError: 'LineSegment' object has no attribute 'unit_vector' in the line 103 of geometry.py, in sine_of_angle_with
return self.unit_vector.x * other_line_segment.unit_vector.y
What could be wrong?
The text was updated successfully, but these errors were encountered:
I've been trying to tweak some parameters (amount of trajectories, epsilon, ...) until it worked. But couldn't find the optimal settings yet to process large amounts of data :(
Did you make any progress?
kwk1001
added a commit
to kwk1001/traclus_impl
that referenced
this issue
Feb 8, 2022
Corresponding error:
AttributeError: 'LineSegment' object has no attribute 'unit_vector'
An incomplete if module causes the problem. It is possible that the value of the variable 'self.length' is 0.0. In that case the attribute ’unit_vector‘ is not defined.
kwk1001
added a commit
to kwk1001/traclus_impl
that referenced
this issue
Feb 8, 2022
Hello!
I've tried to run your code example with main and faced an error:
AttributeError: 'LineSegment' object has no attribute 'unit_vector' in the line 103 of geometry.py, in sine_of_angle_with
return self.unit_vector.x * other_line_segment.unit_vector.y
What could be wrong?
The text was updated successfully, but these errors were encountered: