VLFLbar2P

by Tim C. Lueth, SG-Lib Toolbox: SolidGeometry 5.6 - SG/Solids
Introduced first in SolidGeometry 1.0, Creation date: 2010-11-07, Last change: 2025-09-14

calucates a bar between two points, considering an optional 3rd point to define the x-axis

Description

old Style with vertex list als cols

Example Illustration

 missing image of VLFLbar2P(PL,bx,by,bz)

Syntax

[VL,FL]=VLFLbar2P(PL,bx,by,bz)

Input Parameter

PL: List of 2 or 3 Points. 1st point is start point, 2nd point is end point, 3rd point is optional
bx: desired size in x direction
by: desired size in y direction
bz: desired add-on or sub-on before start and after end point.

Output Parameter

VL: Vertex List
FL: Facet List

Examples


VLFLbar2P([0 0 0; 10 10 10 ]',2,3,4)
VLFLbar2P([0 0 0; 10 10 10 ],2,3,4)




Copyright 2010-2025 Tim C. Lueth. All rights reserved. The code is the property of Tim C. Lueth and may not be redistributed or modified without explicit written permission. This software may be used free of charge for academic research and teaching purposes only. Commercial use, redistribution, modification, or reverse engineering is strictly prohibited. Access to source code is restricted and granted only under specific agreements. For licensing inquiries or commercial use, please contact: Tim C. Lueth

Algorithm (Workflow)

This function, VLFLbar2P, calculates a bar between two points, with an optional third point to define the x-axis. It is part of the SolidGeometry library.

Input Parameters

Output Results

Algorithm Steps

  1. Halve the values of bx, by, and bz.
  2. Extract the start point pa and end point pb from PL.
  3. If PL contains only two points:
    • Calculate the transformation matrix T using Tof2P with pa and the vector pb-pa.
    • Extract the unit vectors ex, ey, and ez from T.
  4. If PL contains three points:
    • Extract the third point pc.
    • Calculate ez as the vector pb-pa.
    • Calculate ex as the vector pc-pa.
    • Calculate ey as the cross product of ez and ex.
    • Normalize ex, ey, and ez.
  5. Calculate the eight corner points p1 to p8 of the bar using the unit vectors and the halved dimensions.
  6. Form a new point list PL with these corner points.
  7. Call VLFLcuboid with the new PL to get the vertex list VL and facet list FL.
  8. If no output is requested, plot the bar using SGfigure and VLFLplotalpha.
Algorithm explaination created using ChatGPT on 2025-08-19 07:41. (Please note: No guarantee for the correctness of this explanation)

Last html export of this page out of FM database by TL: 2025-09-21