Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
41 views

Introdution In a previous post, I asked about why the zoom-by-slider doesn't work as expected when I bind the slider bidirectionally to the scale, to ensure that the slider updates during wheel ...
Starnec's user avatar
  • 797
5 votes
2 answers
260 views

Intro The following code demonstrates the Zoom and Drag functionalities of an ImageView in a viewport. Zoom can be adjusted either by scrolling the mouse wheel or through a Slider. Meanwhile, dragging ...
Starnec's user avatar
  • 797
1 vote
1 answer
66 views

Can you extract a world (or world-view) matrix from a World-View-Projection matrix? Some apps might only provide a WVP matrix to vertex shader inputs. If you intercept them you can't transform ...
Twinsen's user avatar
  • 49
0 votes
2 answers
175 views

My webpage utilises the transform/scale() function to downsize it for mobile devices. While it works quite well on most of the test devices, it breaks on iPhone 17 Pro iOS 26. The webpage loads zoomed ...
iSofia's user avatar
  • 1,577
0 votes
0 answers
57 views

1. Marker Display Issue in Zoom-In Mode When zooming into the line chart, the marker/tooltip is showing the value of the next data point instead of the currently selected one. 2. Tooltip Position ...
Sathya's user avatar
  • 51
1 vote
1 answer
89 views

Here is how the data is presented (it's in pivot table style but not a true pivot table): and this is how I need it to transform to: For each visit, which always start in column H and needs to ...
Sally Parkes's user avatar
0 votes
1 answer
64 views

I am showing some cdkDrag elements in a parent component as bellow: parent.html: <app-parent> @for (item of Items; track item; let index = $index) { <app-child [id]="index"...
user6781's user avatar
  • 621
0 votes
0 answers
55 views

I come here to expose my problem: I'm currently working on a python repository for timeseries analysis. In my repo, I create different transform functions. In a particular code, I have an input that ...
user30738411's user avatar
1 vote
1 answer
226 views

I exported a model to fbx format inside 3ds max. Inside Max the scene look like this: When i import it in my software i get this: https://youtu.be/WPQnkxzL24g The meshes transform is wrong. But if I ...
TheChamp's user avatar
0 votes
2 answers
81 views

In my playbook I have a list like this users: - readonly - write and I need to translate it to a list of objects/dictionaries userDict: - {'username': readonly, 'database': admin} - {'...
Wernfried Domscheit's user avatar
2 votes
1 answer
92 views

When using a backslash followed by three integers, Python interprets them as an octal value: # A backslash followed by three integers will result in an octal value: txt = "\110\145\154\154\157&...
K4zo's user avatar
  • 33
1 vote
1 answer
104 views

it's my first time asking something, I hope I'll do it right. I am looking to fix the y position of an image in a scroll rect. I have done so on the x axis for another image, and it works perfectly. ...
Alexia's user avatar
  • 13
-1 votes
1 answer
53 views

I have a PySpark DataFrame that contains a single row but multiple columns (in context of sql where clause). It just like column start_date with value >date("2025-01-01") then new column ...
ndycuong's user avatar
0 votes
0 answers
35 views

In Safari transform attribute on the foreignObject's parent doesn't work. I couldn't find any workaround other than using native SVG elements like rect, etc., but in my I case I need to use HTML ...
venus's user avatar
  • 59
1 vote
3 answers
73 views

Being primarily a crystallographer and chemist/physicist I encounter rather simple problems, which turn out not to be straightforward :-) My task here is that I have a set of, for example, integer ...
rk85's user avatar
  • 163
1 vote
0 answers
143 views

I am dynamically adding DOM elements during initialization using JavaScript. All the elements are correctly added to the DOM (see developer tools screenshot — all tags are inside the container). ...
Hoon's user avatar
  • 11
0 votes
3 answers
52 views

I want to create fancy borders for an element but the vertical lines are giving me trouble the right side looks correct in this example but only works for this specific size (which i don't want) and ...
Kempeth's user avatar
  • 1,948
0 votes
1 answer
43 views

I am trying to have a scrollable area that has a parallax effect using Vanilla Tilt.js when hovering over a Div. When I don't have Overflow on the Div, the parallax effect works, CodePen, but when I ...
Warby's user avatar
  • 13
0 votes
0 answers
35 views

I have some code for a plot below ggplot() + geom_tile(data = pred, aes(x = x, y = y, fill = .fitted)) + geom_sf(data = shape_simp, fill = NA, colour = "black") + facet_grid(lunar4 ~ ...
mikejwilliamson's user avatar
1 vote
1 answer
951 views

I'm trying to transform and load a CSV using the COPY INTO command in Snowflake. I keep getting the SQL compilation error in the screen capture below. I've also included an image of the code. How do ...
Robert Crump's user avatar
0 votes
2 answers
134 views

I'm trying to replace all values in a column with the same values but in quotes Examples Words words22 to "Words" "words22" I tried doing things like with 'FileName' being the name ...
Alex Kibbe's user avatar
1 vote
2 answers
57 views

In my original code, both squares pulsate when hovering anywhere on the SVG canvas. But I need them to pulsate only when hovering over the smallest square. I suspect that :has() could solve this but ...
John's user avatar
  • 127
0 votes
4 answers
139 views

I have a column with values that repeat and need the unique values to be column headers. Then, I need to add the associated data as a row. I have 20k of these rows and cannot figure out how to ...
Mak's user avatar
  • 3
0 votes
0 answers
43 views

I have some 2D diffraction data stored as a numpy array. In reciprocal space however the data is not uniform, so I have two additional arrays with the x and y reciprocal space coordinates. Each ...
Michael Jones's user avatar
1 vote
1 answer
41 views

I'm encountering an issue with my XSLT transformation where a parameter, encapsulateNodes, is not being passed correctly to the stylesheet. <xsl:variable name="d" select=&...
Sharath Kashyap's user avatar
0 votes
0 answers
78 views

I am working on a game for a game jam. I'm working in unity2D version 6000.0.32f1. I am attempting to get a circle which is my enemy to face my player which is also a circle by updating the enemy ...
aayostan's user avatar
0 votes
1 answer
86 views

I’m using the latest version of Fabric.js, and I have a problem with a polygon. As we know, in Fabric.js, the points field of a polygon doesn’t update after modification (it always contains the ...
TheSinOfGreed's user avatar
1 vote
2 answers
177 views

From Structure and Implementation of Computer Programs, second edition: Exercise 1.19: There is a clever algorithm for computing the Fibonacci numbers in a logarithmic number of steps.Recall the ...
Tina Russell's user avatar
1 vote
1 answer
98 views

I took the example from https://docs.manim.community/en/stable/reference/manim.animation.transform.ReplacementTransform.html and changed it a bit (I added more numbers): class ...
SteeveDroz's user avatar
  • 6,164
0 votes
2 answers
75 views

I have a JSON like this (edited) { "status": "ACTIVE", "users": [ { "id": "1", "name": "Aaron", ...
Sunnydays's user avatar
0 votes
0 answers
54 views

I have given following transformation: arguments=['-0.005', '0.1370', '0.00548', '0.0148379', '-0.1494206', '0.9886599', '-0.0021957', 'wrist_3_link', 'camera_color_optical_frame'] This is being ...
roboguy's user avatar
1 vote
1 answer
55 views

I need to use value of a field to lookup another value in map. { "name": "Smith", "Occupation": { "Smith": "Engineer", "John": &...
Sunnydays's user avatar
-1 votes
1 answer
278 views

i have a problem with a pyspark foundry repository transform. Until now I have been using for what I needed an @transform incremental that allowed me to queue a db each month to a historical "_h&...
Paolo's user avatar
  • 1
1 vote
1 answer
45 views

I have the below JSON and need to filter based on field [ { "firstname": "ABC", "lastname": "PQR", "id": 1, "address": { ...
Dot Net Dev 19's user avatar
0 votes
0 answers
108 views

I am using the code below (ROS2 iron) to transform roll, pitch, and yaw (RPY) from os_imu_front (imu sensor) frame to base_link frame. Although, I get the transformed RPY, I get this warning: [WARN] [...
Abbas's user avatar
  • 149
2 votes
0 answers
173 views

I am utilizing imu_filter_madgwick (https://github.com/CCNYRoboticsLab/imu_tools/blob/noetic/imu_filter_madgwick/src/imu_filter_ros.cpp) (ros2 iron) to obtain roll, pitch, and yaw (RPY) from the ...
Abbas's user avatar
  • 149
1 vote
2 answers
72 views

I'm trying to implement SAT collision detection in a game i'm making with SFML but I noticed that the vertices positions from the vertex array I used to make the player are not changing position even ...
Davide Venturini's user avatar
0 votes
1 answer
112 views

I use the follwoing code to 3-d rotating in Tailwind : <span className='absolute whitespace-nowrap transform-style-3d translate-x-[-50%] translate-y-[-50%] rotate-x-[0deg] translate-z-[100px]'> ...
Mostafa Hosseini's user avatar
0 votes
0 answers
13 views

While I was trying to create a specific shape using CSS to practice what I learned about the transform property, especially the rotate property, but I encountered a problem, which is that when I try ...
Ahmed Reda's user avatar
1 vote
0 answers
50 views

I’m looking into autorest but encounter an issue with duplicate names, one of the parts in the yaml file that I try to transform into a powershell module is as follows: parameters: - ...
Nico's user avatar
  • 11
0 votes
1 answer
162 views

I am trying to use quaternions to deal with 3D rotation. I noticed that sometime I have small errors here and there. I am using Eigen as math library. Here the shortest code that shows the issue: ...
Premoli's user avatar
0 votes
2 answers
116 views

I want the item1 can be larger and rotate first, and then keep spinning, however the result shows that it only excutes the animation but transform. Thank you for your help. In css #item1 { ...
Tommie Tong's user avatar
1 vote
1 answer
67 views

Consider the density histogram of the depth variable from the diamonds data. dat0 <- ggplot2::diamonds %>% select(depth) gg0 <- ggplot(dat0, aes(x = depth)) + scale_x_continuous(limits = c(...
denis's user avatar
  • 962
0 votes
1 answer
238 views

I have a payload in XML format, and I need to convert it to JSON. The XML contains many key-value pairs and also a lot of attributes, and I need those attributes to be included in the JSON as well. &...
Anonim's user avatar
  • 93
0 votes
0 answers
27 views

I am trying to make my shape stay in place when performing a resize. Unfortunately, the following code: element.style.left = initialPositionsTransformed.originalXPosition - Math.abs(...
Jonathan Banks's user avatar
0 votes
1 answer
34 views

When plotting data, vertical line gets incorrectly transformed by matplotlib. With linear x axis, my curve and the vertical line pointing to a specific location on the curve match perfectly. After ...
Dr. Hillier Dániel's user avatar
1 vote
2 answers
74 views

I make a plot with a log10() transformed x axis and I want to add labels to it. Let's assume I am making a scatter plot and for some reason I want to label the points. I do not want the points and ...
LulY's user avatar
  • 1,385
0 votes
1 answer
440 views

I haven't been able to find any instructions on how to do this. So, currently, I can "flip" an Animated.View using Gesture Handler. It works just like I want except that I want the bottom of ...
jedihomeslice's user avatar
0 votes
1 answer
45 views

I have the following json and would like to filter few object only - { "field1": "xyz", "field2": "mno", "res1": "pqrs", &...
Dot Net Dev 19's user avatar
2 votes
2 answers
122 views

I have a problem to calculate the good angle to rotate a div child of a div rotated on x axis. To make it more understandable, I did a fast draw of what I have: In a scene with configurable ...
Mike G.'s user avatar
  • 63

1
2 3 4 5
121