pythonOCC例子搬运:2.在点上标注文字

这里返回总目录>>返回总目录
本例从https://github.com/tpaviot/pythonocc-demos搬运而来
运行版本:0.18.1 在其余版本运行不保证正确
先上结果图
在这里插入图片描述
代码部分

from OCC.gp import gp_Pnt, gp_Pnt2d, gp_OX2d
from OCC.Geom2d import Geom2d_Circle
from OCC.Geom2dAdaptor import Geom2dAdaptor_Curve
from OCC.GCPnts import GCPnts_UniformAbscissa

from OCC.Display.SimpleGui import init_display
display, start_display, add_menu, add_function_to_menu = init_display()


def points_from_curve():
    radius = 5.
    abscissa = 3.
    circle = Geom2d_Circle(gp_OX2d(), radius, True)
    gac = Geom2dAdaptor_Curve(circle.GetHandle())
    ua = GCPnts_UniformAbscissa(gac, abscissa)
    a_sequence = []
    if ua.IsDone():
        n = ua.NbPoints()
        for count in range(1, n + 1):
            p = gp_Pnt2d()
            circle.D0(ua.Parameter(count), p)
            a_sequence.append(p)
    # convert analytic to bspline
    display.DisplayShape(circle, update=True)
    i = 0
    for p in a_sequence:
        i = i + 1
        pstring = 'P%i : parameter %f' % (i, ua.Parameter(i))
        pnt = gp_Pnt(p.X(), p.Y(), 0)
        # display points
        display.DisplayShape(pnt, update=True)
        display.DisplayMessage(pnt, pstring) #这里是重点

if __name__ == '__main__':
    points_from_curve()
    start_display()
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
好的,以下是一个简单的DECLARE示例,用于在ORACLE EBS 12.1.0.2.0版本中处理物料搬运单,并自动生成分配行: ``` DECLARE l_header_id NUMBER; l_line_id NUMBER; l_shipment_id NUMBER; l_qty_shipped NUMBER; BEGIN -- 在此处添加您的代码,用于获取物料搬运单头ID(l_header_id)和行ID(l_line_id) -- 获取物料搬运单头ID和行ID后,使用API进行物料搬运单处理 l_shipment_id := wsh_delivery_details_pub.ship_confirm_deliveries( p_delivery_id => l_header_id, p_delivery_assignment_id => l_line_id, p_shipment_number => NULL, p_transaction_header_id => NULL, p_transaction_line_id => NULL, p_shipped_quantity => l_qty_shipped, p_return_status => NULL, p_error_msg => NULL ); -- 如果物料搬运单处理成功,则自动生成分配行 IF l_shipment_id IS NOT NULL THEN wsh_delivery_assignments_pub.create_delivery_assignment( p_delivery_id => l_header_id, p_delivery_assignment_id => l_line_id, p_shipment_id => l_shipment_id, p_transaction_header_id => NULL, p_transaction_line_id => NULL, p_quantity => l_qty_shipped, p_error_msg => NULL ); END IF; END; ``` 在此示例中,我们使用ORACLE EBS提供的API `wsh_delivery_details_pub.ship_confirm_deliveries` 来处理物料搬运单,并将处理结果赋值给变量 `l_shipment_id`。如果物料搬运单处理成功,则使用 `wsh_delivery_assignments_pub.create_delivery_assignment` API自动生成分配行。 当然,这只是一个简单的示例,实际情况下,您需要根据您的具体业务需求进行进一步的开发和调试。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值