tools.py 文件源码

python
阅读 23 收藏 0 点赞 0 评论 0

项目:lithography-GDSII-format-generator 作者: mgarc729 项目源码 文件源码
def generate_circle_points(radius, initial_angle, final_angle, points=199):
    """
    This methods generates points in a circle shape at (0,0) with a specific radius and from a 
    starting angle to a final angle.

    Args:
        radius: radius of the circle in microns
        initial_angle: initial angle of the drawing in degrees
        final_angle: final angle of the drawing in degrees
        points: amount of points to be generated (default 199)

    Returns:
        Set of points that form the circle
    """
    theta = np.linspace(    np.deg2rad(initial_angle), 
                            np.deg2rad(final_angle), 
                            points)

    return  radius * np.cos(theta) , radius * np.sin(theta)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号