Questions tagged [parameterization]

157 questions
0
votes
0 answers

Assertion violation with planar parameterization of triangle mesh

I'm struggling to generate UV coordinates on a closed triangle mesh using LSCM with the latest CGAL in header-only mode, on Windows, with VS 2017. The code I have is pretty simple since I can't really have two fixed vertices for the seams, so I'm…
0
votes
1 answer

Setting the corners of surface mesh parameterization with CGAL

I am playing with the square_border_parameterizer.cpp example from CGAL-4.14. I would like to not only choose the four corners but also to decide which is which. That is, I would like to specify, which corner will be assigned the parameter pair…
Dominik Mokriš
  • 1,118
  • 1
  • 8
  • 29
0
votes
1 answer

How to use combination of (hard coded values and input values from csv file) in Jmeter script. I need to read specific coulmn values from CSV

I am trying to send this JSON payload in request data from Jmeter and I want to read PaymentID and Parts:[ "field2"] from .csv file that has some extra coulmns, any help in this regard? 1) How to read specific columns as input values from .csv…
Hmh Khan
  • 1
  • 2
0
votes
1 answer

Jmeter: Excel Upload, hard coded parameters passing in next request

I have recorded a Jmeter script where an excel with 4 records has been uploaded and in the next request the 4 values in the excel are passed as different parameters. But when I wil change the excel/no. of values changed to 100. How the request will…
PP1
  • 9
  • 5
0
votes
4 answers

How to best parameterize a string

For example I have: String templateString = "Hi {{customerName}}, you have successfully ordered a {{itemName}}." Map parameters = new HashMap<>(); parameters.put("customerName", "Bob"); parameters.put("itemName", "sofa"); Desired…
onepiece
  • 3,279
  • 8
  • 44
  • 63
0
votes
2 answers

How to instantiate a parameterized type class by name

Following Example: I have a service that can 'start' any vehicle interface VehicleStarterService { fun start(vehicle: Class): String { return vehicle.start } } I would like to start a vehicle type by name…
0
votes
1 answer

How to parse this file with jq?

I just started using jq and json files, and I'm trying to parse a specific file. I'm tring to do it with jq in command line, but if there's any other way to do it properly, I'm in to give it a try. The file itself looks like this : { "Status":…
humanbomb
  • 3
  • 1
0
votes
0 answers

Populating a Numpy array from CSV file in Ros

I have a script that uses np.loadtext to populate a numpy array. This process is only done on init and basically acts like a look up table from there on. I want to implement this in Ros Kinetic. I have created a ROS node that performs the task and…
0
votes
1 answer

How to Parameterize JMeter HTTP Sampler Method?

can we parameterize the HTTP Sampler method in Jmeter ? I am using Jmeter 2.13. I tried the solution remomended here but no luck. How to parameterize http methods in Jmeter using CSV data config? Thanks in advance. Regards, Hari
Hari
  • 123
  • 1
  • 14
0
votes
3 answers

Typescript class declaration syntax with generics

Given the following: interface Component {} interface Composite { getChildren(): component[]; } class StackSegment implements Component {} class Stack implements Composite { getChildren():…
rdiddly
  • 343
  • 1
  • 3
  • 13
0
votes
1 answer

Moving An Object Along a Bezier Curve in OpenGL With Fixed Velocity

I'm working on an OpenGL project which simply uses a 2D array to create a bezier curve (order is start point -> start control point -> end control point -> end): GLfloat controlPointsGirl[numControlPointsGirl][3] = { …
MMMMMCK
  • 307
  • 3
  • 14
0
votes
0 answers

Best way to test a bunch of files with python

I'm trying to process a bunch of files, which aren't known until the testing begins, and I want to add testing mechanisms to the processing so I know if there are any errors and get a report out at the end. This processing requires a little bit of…
Cirrith
  • 147
  • 11
0
votes
1 answer

Query parameteriztion in SoapUI JDBC Requests

My test has 2 JDBC Requests. I'd like to use the results of the first JDBC Request in the WHERE clause of the second JDBC request. For example, querying a DB2 database, I have tried: JDBC Request 1: select member_id from Employees fetch first 1 row…
rs79
  • 2,311
  • 2
  • 33
  • 39
0
votes
1 answer

How do you make a parametric plot of a table of functions in Mathematica?

I am trying to generate a family of curves in a parametric plot (since the function is giving x as a function of y), but I am getting either nothing or clearly incorrect functions. Is there something special which you need to do to make a plot of…
Elliot
  • 5,211
  • 10
  • 42
  • 70
0
votes
1 answer

Efficient method for parameterizing distances between points in a 2D

We have been developing a small simple "CAD" solution that allow us to parameterize the width and length of some specific, simple shapes. For instance consider the following set of vertices forming a triangle. Where any 2 points form a line. So…
40pro
  • 1,283
  • 2
  • 15
  • 23