tfinniga

1,033
Reputation
89 views

Registered User

Name tfinniga
Member for 1 year
Seen 3 hours ago
Website
Location Provo, UT
Age 30
I do graphics programming, mostly in c++ at a small startup.
Nov
19
comment Solving for optimal alignment of 3d polygonal mesh
This is very helpful, especially the reference to the Procrustes problem. I got a little lost when you moved from T, V, and M to A and B. How do they relate to each other?
Nov
19
answered Convert string from __DATE__ into a time_t
Nov
19
comment Convert string from __DATE__ into a time_t
@Michael - it looks like t.tm_dst is not part of visual c++.
Nov
19
asked Convert string from __DATE__ into a time_t
Nov
18
comment Solving for optimal alignment of 3d polygonal mesh
That's a good point. In my case the topology is very important and not world aligned, which is why I'm trying a template system.. my output will be the control cage of a subdivision surface. If I didn't need to have a good topology I'd probably go the implicit surface/marching cubes route.
Nov
17
asked Solving for optimal alignment of 3d polygonal mesh
Oct
30
accepted What is negative squared euclidean distance?
Oct
22
answered How to map a point onto a warped grid
Oct
21
answered Is it premature optimization to develop on slow machines?
Oct
19
comment What is negative squared euclidean distance?
Thanks Adam, I clarified my answer.
Oct
19
revised What is negative squared euclidean distance?
Clarified
Oct
19
answered What is negative squared euclidean distance?
Oct
13
comment C++ operator overloading, understanding the Google style guide
Good points on why this is a recommendation. On the other hand, many types only ever need to be sorted one way. It's not too difficult to switch from using operator< to a functor if you own all the code, the main difficulty is if you are producing a library for others to use and can't just bounce changes off the compiler.
Oct
13
answered SideBySide error on another computer with MSVC++ 2005 installed
Oct
9
comment How do you define an opaque struct array in C?
Ah, I had interpreted the brackets as an overloaded operator[] call.
Oct
9
answered How does speed bit video accelerator work?
Oct
9
answered How do you define an opaque struct array in C?
Oct
9
comment Getting the point of a catmull rom spline after a certain distance?
I just recently heard about the AGG library, but I'm very impressed with it.
Oct
7
revised Getting the point of a catmull rom spline after a certain distance?
added 40 characters in body
Oct
7
answered Getting the point of a catmull rom spline after a certain distance?
Oct
7
accepted Some errors in VC++
Oct
5
comment How can I communicate between two C++ MFC plugins?
Thanks, that's a great list. I can also use intraprocess communications, because we're both dlls hosted in the same process.
Oct
5
asked How can I communicate between two C++ MFC plugins?
Sep
29
answered When do you use third-party code?
Sep
16
awarded  Yearling
Sep
15
revised c++ 2D tessellation library?
added 1829 characters in body
Sep
14
answered c++ 2D tessellation library?
Sep
9
comment What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs?
What I was trying to say is that rational NURBS and Beziers use rational control points much more than most 3d applications, so we were making more mistakes. Typically most 3d apps only have vanilla 3d points and vectors until after going through the perspective transform. Many of our algorithms have to be able to correctly handle weighted/rational/projective and cartesian points, going back and forth, etc.
Sep
4
revised What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs?
added 790 characters in body; deleted 29 characters in body
Sep
4
answered What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs?
Sep
3
revised How to compute a pair of closest points on two 3d circles?
added 6 characters in body
Sep
3
comment Initializing arrays in C++
@sbi thanks, fixed
Sep
3
revised Initializing arrays in C++
deleted 1 characters in body
Sep
3
revised How to compute a pair of closest points on two 3d circles?
added 239 characters in body; edited tags
Sep
2
comment Is it possible to generate a global list of marked strings at compile time/runtime?
It looks like this is about the best solution, which is to say that there's no really clean solution. I guess that makes sense, since everyone I've seen, from gettext to Qt all just implement a little parser.
Sep
2
comment Is it possible to generate a global list of marked strings at compile time/runtime?
Yes, this is what it looks like I'll end up doing. I was just wondering if there's a better way.
Sep
2
asked Is it possible to generate a global list of marked strings at compile time/runtime?
Sep
2
answered Some errors in VC++
Sep
1
accepted Initializing arrays in C++
Sep
1
answered Initializing arrays in C++
Aug
27
comment How to compute a pair of closest points on two 3d circles?
My first attempt at a solution was using Frenet frames, which led to bad results, I think when the curve has an inflection point. I'll try to get a screenshot up here shortly.
Aug
25
accepted License / registration frameworks for C / C++
Aug
24
answered Can anyone identify this image format?
Aug
24
comment How to compute a pair of closest points on two 3d circles?
Good point, I'll have to check my assumptions. I think for piping a curve, there's got to be some kind of constraint between minimum radius of curvature and radius of the pipe. I'm still trying to visualize what's going on with the example you posted, but it seems related. The twisting I'm worried about is twisting about the tangent..
Aug
24
asked How to compute a pair of closest points on two 3d circles?
Aug
19
revised Starting point for learning CAD/CAE file formats?
Realized you just wanted to get a mesh out.
Aug
18
answered Starting point for learning CAD/CAE file formats?
Jun
15
comment Decent profiler for Windows?
I didn't downvote, but the link you sent is basically a manual sampling profiler.