-
Notifications
You must be signed in to change notification settings - Fork 105
Description
hello,
I am trying to run an example from the FullControl tutorial using PyCharm on my laptop. However, I’m encountering the following error:
AttributeError: module 'lab.fullcontrol' has no attribute 'arc_sinewaveXY'
I have already reinstalled FullControl, but the issue persists. It appears that the arc_sinewaveXY function is not available in the current version of the module.
Could you please let me know how to resolve this issue or whether the function has been renamed, moved, or deprecated?
Thank you very much for your assistance.
import fullcontrol as fc
import lab.fullcontrol as fclab
from math import tau, radians
import lab.fullcontrol as fclab
centre = fc.Point(x=0, y=0, z=0)
radius = 10
amplitude = -2
start_angle = 0
arc_angle = radians(270)
periods = 12
segments_per_period = 8
extra_half_period = False
phase_shift = 0
steps = fclab.arc_sinewaveXY(centre, radius, amplitude, start_angle, arc_angle, periods, segments_per_period, extra_half_period, phase_shift)
fc.transform(steps, 'plot', fc.PlotControls(style="line", zoom=0.8, color_type='print_sequence'))