14 lines
287 B
Python
14 lines
287 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
@File : flat_gauge.py
|
|
@Time : 2025/11/27 16:03:11
|
|
@Author : wty-yy
|
|
@Version : 1.0
|
|
@Blog : https://wty-yy.github.io/
|
|
@Desc : Flat Gauge Implementation
|
|
'''
|
|
from robogauge.tasks.gauge.base_gauge import BaseGauge
|
|
|
|
class FlatGauge(BaseGauge):
|
|
...
|