Search found 2 matches

by [email protected]
14 Jul 2024, 03:00
Forum: General questions
Topic: Import file to CoppeliaSim
Replies: 8
Views: 17328

Re: Import file to CoppeliaSim

I have a motion planning TTT already open. it has the following code

function fromCSV (s)
s = s .. ',' -- ending comma
local t = {} -- table to collect fields
local fieldstart = 1
repeat
-- next field is quoted? (start with `"'?)
if string.find(s, '^"', fieldstart) then
local a, c
local i ...
by [email protected]
14 Jul 2024, 02:38
Forum: General questions
Topic: Import Path From CSV File Not Working
Replies: 2
Views: 4960

Re: Import Path From CSV File Not Working

I have saved csv excel file on my ciomputer that I need to use to run a sim that has been created in coppelia. How do I get these files into the scene. already written in the script is

function fromCSV (s)
s = s .. ',' -- ending comma
local t = {} -- table to collect fields
local fieldstart = 1 ...