C# PointBetween In this section were going to finish the PointBetween class and create Unit Tests for it. Let’ start of by defining a new Interface and Class for PointBetween.…Continue readingC# PointBetween
C# PointByCoordinates In this section were going to finish the PointByCoordinates class and create Unit Tests for it. Let’ start of with some changes to the Abstract Classes, Base Classes,…Continue readingC# PointByCoordinates
VBScriptSend XML Data to a Web Service I use this from within a CAD application to send XML data to an Amazon Web Services APIGateway which, calls a Lambda microservice…Continue readingVBScript Send XML Data to a Web Service
BRep (Boundary Representation) Within the CAD System there are two main constructs, the object and the elements that make up the object. Lets imagine a Surface Object, it is comprised…Continue readingBRep (Boundary Representation)
Normal’s Within the CAD system, the base geometric elements, Surface’s (Super Class), Curve’s (Super Class) have an inheritable attribute, known as the Surface or Curve normal dependent on the element…Continue readingNormal's
Intersection of Two Planes Lets take two planes and determine the vector form for the line of intersection. Vector Cross Product Let’s start with the vector cross product of the…Continue readingIntersection of Two Planes
Lines Let’s image we have a point in space Point(A) -2 ; 1 ; 4 and Point(B) 10 ; -7 ; 13 we can define Vector(N) for this line: Now…Continue readingLines
Plane Through Three Points This is done in a series of small steps; Select One Point to be the Primary Point(P) Create Two vectors from the Primary Point(P) to the…Continue readingPlane Through Three Points
Translate Point Along a Vector This is done in a series of small steps; Calculate the Magnitude of the Vector Calculate the Unit Vector Translate the Point Translate Reference Point…Continue readingTranslate Point Along a Vector
That's awesome, thanks for sharing
This is just what i was looking for