• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

SciKit-Surgery / scikit-surgeryutils / 24894329511

24 Apr 2026 02:18PM UTC coverage: 45.819%. First build
24894329511

push

github

MattClarkson
Issue #64: Add example for VTKOverlayWindow.

0 of 69 new or added lines in 3 files covered. (0.0%)

389 of 849 relevant lines covered (45.82%)

6.77 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/sksurgeryutils/utils/string_utils.py
1
# coding=utf-8
2

3
"""
4
Various string parsing utils.
5
"""
6

NEW
7
def split_string(param_string):
×
8
    """
9
    Splits a comma separated list of rx,ry,rz,tx,ty,tz to a list of floats.
10
    :param param_string: string
11
    :return: list of float
12
    """
NEW
13
    result = [0, 0, 0, 0, 0, 0]
×
NEW
14
    if param_string is not None:
×
NEW
15
        split = param_string.split(',')
×
NEW
16
        if len(split) != 6:
×
NEW
17
            raise ValueError('List is wrong length:' + str(split))
×
NEW
18
        for i in range(6):
×
NEW
19
            result[i] = float(split[i])
×
NEW
20
    return result
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc