在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → jt文件解析开源程序jtassistant

实例介绍

【实例简介】jt文件解析开源程序jtassistant

对有志于开发jt文件解析同志而言,该文件是一盏明灯,结合jt文件参考书,可以很好的解读jt文件。欢迎下载。

【实例截图】

from clipboard

【核心代码】
.
├── jt-e859e8c
│   ├── CMake
│   │   ├── DefineCxxFlags.cmake
│   │   ├── DefineMacro.cmake
│   │   ├── FindEigen3.cmake
│   │   ├── FindOCCT.cmake
│   │   ├── FindTBB.cmake
│   │   └── FindWindowsSDK.cmake
│   ├── CMakeLists.txt
│   ├── JTAssistant
│   │   ├── CMakeLists.txt
│   │   ├── Eigen3
│   │   │   ├── Eigen
│   │   │   │   ├── Array
│   │   │   │   ├── CMakeLists.txt
│   │   │   │   ├── Cholesky
│   │   │   │   ├── CholmodSupport
│   │   │   │   ├── Core
│   │   │   │   ├── Dense
│   │   │   │   ├── Eigen
│   │   │   │   ├── Eigen2Support
│   │   │   │   ├── Eigenvalues
│   │   │   │   ├── Geometry
│   │   │   │   ├── Householder
│   │   │   │   ├── IterativeLinearSolvers
│   │   │   │   ├── Jacobi
│   │   │   │   ├── LU
│   │   │   │   ├── LeastSquares
│   │   │   │   ├── MetisSupport
│   │   │   │   ├── OrderingMethods
│   │   │   │   ├── PaStiXSupport
│   │   │   │   ├── PardisoSupport
│   │   │   │   ├── QR
│   │   │   │   ├── QtAlignedMalloc
│   │   │   │   ├── SPQRSupport
│   │   │   │   ├── SVD
│   │   │   │   ├── Sparse
│   │   │   │   ├── SparseCholesky
│   │   │   │   ├── SparseCore
│   │   │   │   ├── SparseLU
│   │   │   │   ├── SparseQR
│   │   │   │   ├── StdDeque
│   │   │   │   ├── StdList
│   │   │   │   ├── StdVector
│   │   │   │   ├── SuperLUSupport
│   │   │   │   ├── UmfPackSupport
│   │   │   │   └── src
│   │   │   │       ├── CMakeLists.txt
│   │   │   │       ├── Cholesky
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── LDLT.h
│   │   │   │       │   ├── LLT.h
│   │   │   │       │   └── LLT_MKL.h
│   │   │   │       ├── CholmodSupport
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── CholmodSupport.h
│   │   │   │       ├── Core
│   │   │   │       │   ├── Array.h
│   │   │   │       │   ├── ArrayBase.h
│   │   │   │       │   ├── ArrayWrapper.h
│   │   │   │       │   ├── Assign.h
│   │   │   │       │   ├── Assign_MKL.h
│   │   │   │       │   ├── BandMatrix.h
│   │   │   │       │   ├── Block.h
│   │   │   │       │   ├── BooleanRedux.h
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── CommaInitializer.h
│   │   │   │       │   ├── CoreIterators.h
│   │   │   │       │   ├── CwiseBinaryOp.h
│   │   │   │       │   ├── CwiseNullaryOp.h
│   │   │   │       │   ├── CwiseUnaryOp.h
│   │   │   │       │   ├── CwiseUnaryView.h
│   │   │   │       │   ├── DenseBase.h
│   │   │   │       │   ├── DenseCoeffsBase.h
│   │   │   │       │   ├── DenseStorage.h
│   │   │   │       │   ├── Diagonal.h
│   │   │   │       │   ├── DiagonalMatrix.h
│   │   │   │       │   ├── DiagonalProduct.h
│   │   │   │       │   ├── Dot.h
│   │   │   │       │   ├── EigenBase.h
│   │   │   │       │   ├── Flagged.h
│   │   │   │       │   ├── ForceAlignedAccess.h
│   │   │   │       │   ├── Functors.h
│   │   │   │       │   ├── Fuzzy.h
│   │   │   │       │   ├── GeneralProduct.h
│   │   │   │       │   ├── GenericPacketMath.h
│   │   │   │       │   ├── GlobalFunctions.h
│   │   │   │       │   ├── IO.h
│   │   │   │       │   ├── Map.h
│   │   │   │       │   ├── MapBase.h
│   │   │   │       │   ├── MathFunctions.h
│   │   │   │       │   ├── Matrix.h
│   │   │   │       │   ├── MatrixBase.h
│   │   │   │       │   ├── NestByValue.h
│   │   │   │       │   ├── NoAlias.h
│   │   │   │       │   ├── NumTraits.h
│   │   │   │       │   ├── PermutationMatrix.h
│   │   │   │       │   ├── PlainObjectBase.h
│   │   │   │       │   ├── ProductBase.h
│   │   │   │       │   ├── Random.h
│   │   │   │       │   ├── Redux.h
│   │   │   │       │   ├── Ref.h
│   │   │   │       │   ├── Replicate.h
│   │   │   │       │   ├── ReturnByValue.h
│   │   │   │       │   ├── Reverse.h
│   │   │   │       │   ├── Select.h
│   │   │   │       │   ├── SelfAdjointView.h
│   │   │   │       │   ├── SelfCwiseBinaryOp.h
│   │   │   │       │   ├── SolveTriangular.h
│   │   │   │       │   ├── StableNorm.h
│   │   │   │       │   ├── Stride.h
│   │   │   │       │   ├── Swap.h
│   │   │   │       │   ├── Transpose.h
│   │   │   │       │   ├── Transpositions.h
│   │   │   │       │   ├── TriangularMatrix.h
│   │   │   │       │   ├── VectorBlock.h
│   │   │   │       │   ├── VectorwiseOp.h
│   │   │   │       │   ├── Visitor.h
│   │   │   │       │   ├── arch
│   │   │   │       │   │   ├── AltiVec
│   │   │   │       │   │   │   ├── CMakeLists.txt
│   │   │   │       │   │   │   ├── Complex.h
│   │   │   │       │   │   │   └── PacketMath.h
│   │   │   │       │   │   ├── CMakeLists.txt
│   │   │   │       │   │   ├── Default
│   │   │   │       │   │   │   ├── CMakeLists.txt
│   │   │   │       │   │   │   └── Settings.h
│   │   │   │       │   │   ├── NEON
│   │   │   │       │   │   │   ├── CMakeLists.txt
│   │   │   │       │   │   │   ├── Complex.h
│   │   │   │       │   │   │   └── PacketMath.h
│   │   │   │       │   │   └── SSE
│   │   │   │       │   │       ├── CMakeLists.txt
│   │   │   │       │   │       ├── Complex.h
│   │   │   │       │   │       ├── MathFunctions.h
│   │   │   │       │   │       └── PacketMath.h
│   │   │   │       │   ├── products
│   │   │   │       │   │   ├── CMakeLists.txt
│   │   │   │       │   │   ├── CoeffBasedProduct.h
│   │   │   │       │   │   ├── GeneralBlockPanelKernel.h
│   │   │   │       │   │   ├── GeneralMatrixMatrix.h
│   │   │   │       │   │   ├── GeneralMatrixMatrixTriangular.h
│   │   │   │       │   │   ├── GeneralMatrixMatrixTriangular_MKL.h
│   │   │   │       │   │   ├── GeneralMatrixMatrix_MKL.h
│   │   │   │       │   │   ├── GeneralMatrixVector.h
│   │   │   │       │   │   ├── GeneralMatrixVector_MKL.h
│   │   │   │       │   │   ├── Parallelizer.h
│   │   │   │       │   │   ├── SelfadjointMatrixMatrix.h
│   │   │   │       │   │   ├── SelfadjointMatrixMatrix_MKL.h
│   │   │   │       │   │   ├── SelfadjointMatrixVector.h
│   │   │   │       │   │   ├── SelfadjointMatrixVector_MKL.h
│   │   │   │       │   │   ├── SelfadjointProduct.h
│   │   │   │       │   │   ├── SelfadjointRank2Update.h
│   │   │   │       │   │   ├── TriangularMatrixMatrix.h
│   │   │   │       │   │   ├── TriangularMatrixMatrix_MKL.h
│   │   │   │       │   │   ├── TriangularMatrixVector.h
│   │   │   │       │   │   ├── TriangularMatrixVector_MKL.h
│   │   │   │       │   │   ├── TriangularSolverMatrix.h
│   │   │   │       │   │   ├── TriangularSolverMatrix_MKL.h
│   │   │   │       │   │   └── TriangularSolverVector.h
│   │   │   │       │   └── util
│   │   │   │       │       ├── BlasUtil.h
│   │   │   │       │       ├── CMakeLists.txt
│   │   │   │       │       ├── Constants.h
│   │   │   │       │       ├── DisableStupidWarnings.h
│   │   │   │       │       ├── ForwardDeclarations.h
│   │   │   │       │       ├── MKL_support.h
│   │   │   │       │       ├── Macros.h
│   │   │   │       │       ├── Memory.h
│   │   │   │       │       ├── Meta.h
│   │   │   │       │       ├── NonMPL2.h
│   │   │   │       │       ├── ReenableStupidWarnings.h
│   │   │   │       │       ├── StaticAssert.h
│   │   │   │       │       └── XprHelper.h
│   │   │   │       ├── Eigen2Support
│   │   │   │       │   ├── Block.h
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── Cwise.h
│   │   │   │       │   ├── CwiseOperators.h
│   │   │   │       │   ├── Geometry
│   │   │   │       │   │   ├── AlignedBox.h
│   │   │   │       │   │   ├── All.h
│   │   │   │       │   │   ├── AngleAxis.h
│   │   │   │       │   │   ├── CMakeLists.txt
│   │   │   │       │   │   ├── Hyperplane.h
│   │   │   │       │   │   ├── ParametrizedLine.h
│   │   │   │       │   │   ├── Quaternion.h
│   │   │   │       │   │   ├── Rotation2D.h
│   │   │   │       │   │   ├── RotationBase.h
│   │   │   │       │   │   ├── Scaling.h
│   │   │   │       │   │   ├── Transform.h
│   │   │   │       │   │   └── Translation.h
│   │   │   │       │   ├── LU.h
│   │   │   │       │   ├── Lazy.h
│   │   │   │       │   ├── LeastSquares.h
│   │   │   │       │   ├── Macros.h
│   │   │   │       │   ├── MathFunctions.h
│   │   │   │       │   ├── Memory.h
│   │   │   │       │   ├── Meta.h
│   │   │   │       │   ├── Minor.h
│   │   │   │       │   ├── QR.h
│   │   │   │       │   ├── SVD.h
│   │   │   │       │   ├── TriangularSolver.h
│   │   │   │       │   └── VectorBlock.h
│   │   │   │       ├── Eigenvalues
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── ComplexEigenSolver.h
│   │   │   │       │   ├── ComplexSchur.h
│   │   │   │       │   ├── ComplexSchur_MKL.h
│   │   │   │       │   ├── EigenSolver.h
│   │   │   │       │   ├── GeneralizedEigenSolver.h
│   │   │   │       │   ├── GeneralizedSelfAdjointEigenSolver.h
│   │   │   │       │   ├── HessenbergDecomposition.h
│   │   │   │       │   ├── MatrixBaseEigenvalues.h
│   │   │   │       │   ├── RealQZ.h
│   │   │   │       │   ├── RealSchur.h
│   │   │   │       │   ├── RealSchur_MKL.h
│   │   │   │       │   ├── SelfAdjointEigenSolver.h
│   │   │   │       │   ├── SelfAdjointEigenSolver_MKL.h
│   │   │   │       │   └── Tridiagonalization.h
│   │   │   │       ├── Geometry
│   │   │   │       │   ├── AlignedBox.h
│   │   │   │       │   ├── AngleAxis.h
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── EulerAngles.h
│   │   │   │       │   ├── Homogeneous.h
│   │   │   │       │   ├── Hyperplane.h
│   │   │   │       │   ├── OrthoMethods.h
│   │   │   │       │   ├── ParametrizedLine.h
│   │   │   │       │   ├── Quaternion.h
│   │   │   │       │   ├── Rotation2D.h
│   │   │   │       │   ├── RotationBase.h
│   │   │   │       │   ├── Scaling.h
│   │   │   │       │   ├── Transform.h
│   │   │   │       │   ├── Translation.h
│   │   │   │       │   ├── Umeyama.h
│   │   │   │       │   └── arch
│   │   │   │       │       ├── CMakeLists.txt
│   │   │   │       │       └── Geometry_SSE.h
│   │   │   │       ├── Householder
│   │   │   │       │   ├── BlockHouseholder.h
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── Householder.h
│   │   │   │       │   └── HouseholderSequence.h
│   │   │   │       ├── IterativeLinearSolvers
│   │   │   │       │   ├── BasicPreconditioners.h
│   │   │   │       │   ├── BiCGSTAB.h
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── ConjugateGradient.h
│   │   │   │       │   ├── IncompleteLUT.h
│   │   │   │       │   └── IterativeSolverBase.h
│   │   │   │       ├── Jacobi
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── Jacobi.h
│   │   │   │       ├── LU
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── Determinant.h
│   │   │   │       │   ├── FullPivLU.h
│   │   │   │       │   ├── Inverse.h
│   │   │   │       │   ├── PartialPivLU.h
│   │   │   │       │   ├── PartialPivLU_MKL.h
│   │   │   │       │   └── arch
│   │   │   │       │       ├── CMakeLists.txt
│   │   │   │       │       └── Inverse_SSE.h
│   │   │   │       ├── MetisSupport
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── MetisSupport.h
│   │   │   │       ├── OrderingMethods
│   │   │   │       │   ├── Amd.h
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── Eigen_Colamd.h
│   │   │   │       │   └── Ordering.h
│   │   │   │       ├── PaStiXSupport
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── PaStiXSupport.h
│   │   │   │       ├── PardisoSupport
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── PardisoSupport.h
│   │   │   │       ├── QR
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── ColPivHouseholderQR.h
│   │   │   │       │   ├── ColPivHouseholderQR_MKL.h
│   │   │   │       │   ├── FullPivHouseholderQR.h
│   │   │   │       │   ├── HouseholderQR.h
│   │   │   │       │   └── HouseholderQR_MKL.h
│   │   │   │       ├── SPQRSupport
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── SuiteSparseQRSupport.h
│   │   │   │       ├── SVD
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── JacobiSVD.h
│   │   │   │       │   ├── JacobiSVD_MKL.h
│   │   │   │       │   └── UpperBidiagonalization.h
│   │   │   │       ├── SparseCholesky
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── SimplicialCholesky.h
│   │   │   │       │   └── SimplicialCholesky_impl.h
│   │   │   │       ├── SparseCore
│   │   │   │       │   ├── AmbiVector.h
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── CompressedStorage.h
│   │   │   │       │   ├── ConservativeSparseSparseProduct.h
│   │   │   │       │   ├── MappedSparseMatrix.h
│   │   │   │       │   ├── SparseBlock.h
│   │   │   │       │   ├── SparseColEtree.h
│   │   │   │       │   ├── SparseCwiseBinaryOp.h
│   │   │   │       │   ├── SparseCwiseUnaryOp.h
│   │   │   │       │   ├── SparseDenseProduct.h
│   │   │   │       │   ├── SparseDiagonalProduct.h
│   │   │   │       │   ├── SparseDot.h
│   │   │   │       │   ├── SparseFuzzy.h
│   │   │   │       │   ├── SparseMatrix.h
│   │   │   │       │   ├── SparseMatrixBase.h
│   │   │   │       │   ├── SparsePermutation.h
│   │   │   │       │   ├── SparseProduct.h
│   │   │   │       │   ├── SparseRedux.h
│   │   │   │       │   ├── SparseSelfAdjointView.h
│   │   │   │       │   ├── SparseSparseProductWithPruning.h
│   │   │   │       │   ├── SparseTranspose.h
│   │   │   │       │   ├── SparseTriangularView.h
│   │   │   │       │   ├── SparseUtil.h
│   │   │   │       │   ├── SparseVector.h
│   │   │   │       │   ├── SparseView.h
│   │   │   │       │   └── TriangularSolver.h
│   │   │   │       ├── SparseLU
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── SparseLU.h
│   │   │   │       │   ├── SparseLUImpl.h
│   │   │   │       │   ├── SparseLU_Memory.h
│   │   │   │       │   ├── SparseLU_Structs.h
│   │   │   │       │   ├── SparseLU_SupernodalMatrix.h
│   │   │   │       │   ├── SparseLU_Utils.h
│   │   │   │       │   ├── SparseLU_column_bmod.h
│   │   │   │       │   ├── SparseLU_column_dfs.h
│   │   │   │       │   ├── SparseLU_copy_to_ucol.h
│   │   │   │       │   ├── SparseLU_gemm_kernel.h
│   │   │   │       │   ├── SparseLU_heap_relax_snode.h
│   │   │   │       │   ├── SparseLU_kernel_bmod.h
│   │   │   │       │   ├── SparseLU_panel_bmod.h
│   │   │   │       │   ├── SparseLU_panel_dfs.h
│   │   │   │       │   ├── SparseLU_pivotL.h
│   │   │   │       │   ├── SparseLU_pruneL.h
│   │   │   │       │   └── SparseLU_relax_snode.h
│   │   │   │       ├── SparseQR
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── SparseQR.h
│   │   │   │       ├── StlSupport
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── StdDeque.h
│   │   │   │       │   ├── StdList.h
│   │   │   │       │   ├── StdVector.h
│   │   │   │       │   └── details.h
│   │   │   │       ├── SuperLUSupport
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── SuperLUSupport.h
│   │   │   │       ├── UmfPackSupport
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   └── UmfPackSupport.h
│   │   │   │       ├── misc
│   │   │   │       │   ├── CMakeLists.txt
│   │   │   │       │   ├── Image.h
│   │   │   │       │   ├── Kernel.h
│   │   │   │       │   ├── Solve.h
│   │   │   │       │   ├── SparseSolve.h
│   │   │   │       │   └── blas.h
│   │   │   │       └── plugins
│   │   │   │           ├── ArrayCwiseBinaryOps.h
│   │   │   │           ├── ArrayCwiseUnaryOps.h
│   │   │   │           ├── BlockMethods.h
│   │   │   │           ├── CMakeLists.txt
│   │   │   │           ├── CommonCwiseBinaryOps.h
│   │   │   │           ├── CommonCwiseUnaryOps.h
│   │   │   │           ├── MatrixCwiseBinaryOps.h
│   │   │   │           └── MatrixCwiseUnaryOps.h
│   │   │   └── EigenMarker
│   │   ├── JTAssistant.qrc
│   │   ├── README.txt
│   │   ├── res
│   │   │   ├── fonts
│   │   │   │   └── OpenSans-Regular.ttf
│   │   │   └── icons
│   │   │       └── desktop
│   │   │           ├── Axes.png
│   │   │           ├── Fitall.png
│   │   │           ├── Iso.png
│   │   │           ├── Move.png
│   │   │           ├── Rotate.png
│   │   │           ├── Zoom.png
│   │   │           ├── back36t.png
│   │   │           ├── bottom36t.png
│   │   │           ├── folder.png
│   │   │           ├── folder_b.png
│   │   │           ├── front36t.png
│   │   │           ├── gear.png
│   │   │           ├── group.png
│   │   │           ├── hline.png
│   │   │           ├── icon.ico
│   │   │           ├── icon.png
│   │   │           ├── icon.rc
│   │   │           ├── instance.png
│   │   │           ├── left36t.png
│   │   │           ├── lod.png
│   │   │           ├── rangelod.png
│   │   │           ├── resetview36t.png
│   │   │           ├── right36t.png
│   │   │           ├── screenshot.png
│   │   │           ├── shape.png
│   │   │           ├── shapelod.png
│   │   │           └── top36t.png
│   │   └── src
│   │       ├── BVH
│   │       │   ├── BVH.cxx
│   │       │   ├── BVH_BinnedBuilder.hxx
│   │       │   ├── BVH_BinnedBuilder.lxx
│   │       │   ├── BVH_Box.hxx
│   │       │   ├── BVH_Box.lxx
│   │       │   ├── BVH_Builder.hxx
│   │       │   ├── BVH_Builder.lxx
│   │       │   ├── BVH_Geometry.hxx
│   │       │   ├── BVH_Geometry.lxx
│   │       │   ├── BVH_LinearBuilder.hxx
│   │       │   ├── BVH_LinearBuilder.lxx
│   │       │   ├── BVH_Object.hxx
│   │       │   ├── BVH_Object.lxx
│   │       │   ├── BVH_ObjectSet.hxx
│   │       │   ├── BVH_ObjectSet.lxx
│   │       │   ├── BVH_PrimitiveSet.hxx
│   │       │   ├── BVH_PrimitiveSet.lxx
│   │       │   ├── BVH_Properties.cxx
│   │       │   ├── BVH_Properties.hxx
│   │       │   ├── BVH_Properties.lxx
│   │       │   ├── BVH_QueueBuilder.hxx
│   │       │   ├── BVH_QueueBuilder.lxx
│   │       │   ├── BVH_Set.hxx
│   │       │   ├── BVH_Set.lxx
│   │       │   ├── BVH_Sorter.hxx
│   │       │   ├── BVH_Sorter.lxx
│   │       │   ├── BVH_SpatialMedianBuilder.hxx
│   │       │   ├── BVH_SpatialMedianBuilder.lxx
│   │       │   ├── BVH_SweepPlaneBuilder.hxx
│   │       │   ├── BVH_SweepPlaneBuilder.lxx
│   │       │   ├── BVH_Tree.hxx
│   │       │   ├── BVH_Tree.lxx
│   │       │   ├── BVH_Triangulation.hxx
│   │       │   ├── BVH_Triangulation.lxx
│   │       │   └── BVH_Types.hxx
│   │       ├── JTCommon_Utils.hxx
│   │       ├── JTData
│   │       │   ├── JTData_Attribute.cxx
│   │       │   ├── JTData_Attribute.hxx
│   │       │   ├── JTData_DataLoader.cxx
│   │       │   ├── JTData_DataLoader.hxx
│   │       │   ├── JTData_Element.cxx
│   │       │   ├── JTData_Element.hxx
│   │       │   ├── JTData_GeometrySource.cxx
│   │       │   ├── JTData_GeometrySource.hxx
│   │       │   ├── JTData_Node.cxx
│   │       │   ├── JTData_Node.hxx
│   │       │   ├── JTData_SceneGraph.cxx
│   │       │   └── JTData_SceneGraph.hxx
│   │       ├── JTGui
│   │       │   ├── JTGui_AboutDialog.cxx
│   │       │   ├── JTGui_AboutDialog.hxx
│   │       │   ├── JTGui_MainWindow.cxx
│   │       │   ├── JTGui_MainWindow.hxx
│   │       │   ├── JTGui_SceneGraphTree.cxx
│   │       │   ├── JTGui_SceneGraphTree.hxx
│   │       │   ├── JTGui_Window.cxx
│   │       │   ├── JTGui_Window.hxx
│   │       │   └── MainWindow.ui
│   │       ├── JTVis
│   │       │   ├── JTVis_AABBGeometry.cxx
│   │       │   ├── JTVis_AABBGeometry.hxx
│   │       │   ├── JTVis_BvhGeometryWrapper.cxx
│   │       │   ├── JTVis_BvhGeometryWrapper.hxx
│   │       │   ├── JTVis_CameraTransition.cxx
│   │       │   ├── JTVis_CameraTransition.hxx
│   │       │   ├── JTVis_Frustum.cxx
│   │       │   ├── JTVis_Frustum.hxx
│   │       │   ├── JTVis_GraphicObject.hxx
│   │       │   ├── JTVis_HudRenderer.cxx
│   │       │   ├── JTVis_HudRenderer.hxx
│   │       │   ├── JTVis_PartGeometry.cxx
│   │       │   ├── JTVis_PartGeometry.hxx
│   │       │   ├── JTVis_PartNode.cxx
│   │       │   ├── JTVis_PartNode.hxx
│   │       │   ├── JTVis_QuadGeometry.cxx
│   │       │   ├── JTVis_QuadGeometry.hxx
│   │       │   ├── JTVis_Scene.cxx
│   │       │   ├── JTVis_Scene.hxx
│   │       │   ├── JTVis_ScenegraphTasks.cxx
│   │       │   ├── JTVis_ScenegraphTasks.hxx
│   │       │   ├── JTVis_TargetedCamera.cxx
│   │       │   ├── JTVis_TargetedCamera.hxx
│   │       │   ├── JTVis_TrihedronGeometry.cxx
│   │       │   ├── JTVis_TrihedronGeometry.hxx
│   │       │   ├── Shaders
│   │       │   │   ├── bgShader.frag
│   │       │   │   ├── bgShader.vert
│   │       │   │   ├── default.frag
│   │       │   │   ├── default.vert
│   │       │   │   ├── idShader.frag
│   │       │   │   ├── idShader.vert
│   │       │   │   ├── lineShader.frag
│   │       │   │   ├── lineShader.vert
│   │       │   │   ├── texQuadShader.frag
│   │       │   │   ├── texQuadShader.vert
│   │       │   │   ├── trihedronShader.frag
│   │       │   │   └── trihedronShader.vert
│   │       │   └── Shaders.qrc
│   │       └── main.cxx
│   ├── LICENSE.txt
│   └── TKJT
│       ├── CMakeLists.txt
│       └── src
│           ├── JtAttribute
│           │   ├── JtAttribute_Base.cxx
│           │   ├── JtAttribute_Base.hxx
│           │   ├── JtAttribute_GeometricTransform.cxx
│           │   ├── JtAttribute_GeometricTransform.hxx
│           │   ├── JtAttribute_Material.cxx
│           │   └── JtAttribute_Material.hxx
│           ├── JtData
│           │   ├── JtData_ByteSwap.hxx
│           │   ├── JtData_ClassInfo.hxx
│           │   ├── JtData_CompVector.hxx
│           │   ├── JtData_CompVectorData.hxx
│           │   ├── JtData_CompVectorRef.hxx
│           │   ├── JtData_DeferredObject.cxx
│           │   ├── JtData_DeferredObject.hxx
│           │   ├── JtData_FileReader.cxx
│           │   ├── JtData_FileReader.hxx
│           │   ├── JtData_Inflate.cxx
│           │   ├── JtData_Inflate.hxx
│           │   ├── JtData_Message.hxx
│           │   ├── JtData_Model.cxx
│           │   ├── JtData_Model.hxx
│           │   ├── JtData_Object.cxx
│           │   ├── JtData_Object.hxx
│           │   ├── JtData_Parallel.hxx
│           │   ├── JtData_Reader.cxx
│           │   ├── JtData_Reader.hxx
│           │   ├── JtData_ReaderInterface.hxx
│           │   ├── JtData_SingleHandle.hxx
│           │   ├── JtData_Types.cxx
│           │   ├── JtData_Types.hxx
│           │   ├── JtData_Vector.hxx
│           │   ├── JtData_VectorData.hxx
│           │   ├── JtData_VectorMover.hxx
│           │   └── JtData_VectorRef.hxx
│           ├── JtDecode
│           │   ├── JtDecode_BitReader.cxx
│           │   ├── JtDecode_BitReader.hxx
│           │   ├── JtDecode_Int32CDP.cxx
│           │   ├── JtDecode_Int32CDP.hxx
│           │   ├── JtDecode_Int32CDPScheduler.hxx
│           │   ├── JtDecode_Int32CDP_Arithmetic.cxx
│           │   ├── JtDecode_Int32CDP_Arithmetic.hxx
│           │   ├── JtDecode_Int32CDP_Bitlength.cxx
│           │   ├── JtDecode_Int32CDP_Bitlength.hxx
│           │   ├── JtDecode_Int32CDP_Bitlength2.cxx
│           │   ├── JtDecode_Int32CDP_Bitlength2.hxx
│           │   ├── JtDecode_Int32CDP_Bits.cxx
│           │   ├── JtDecode_Int32CDP_Bits.hxx
│           │   ├── JtDecode_Int32CDP_Chopper.cxx
│           │   ├── JtDecode_Int32CDP_Chopper.hxx
│           │   ├── JtDecode_Int32CDP_Huffman.cxx
│           │   ├── JtDecode_Int32CDP_Huffman.hxx
│           │   ├── JtDecode_Int32CDP_Null.cxx
│           │   ├── JtDecode_Int32CDP_Null.hxx
│           │   ├── JtDecode_MeshCoderDriver.cxx
│           │   ├── JtDecode_MeshCoderDriver.hxx
│           │   ├── JtDecode_ProbContext.cxx
│           │   ├── JtDecode_ProbContext.hxx
│           │   ├── JtDecode_Unpack.cxx
│           │   ├── JtDecode_Unpack.hxx
│           │   ├── JtDecode_VertexData.cxx
│           │   ├── JtDecode_VertexData.hxx
│           │   ├── JtDecode_VertexData_Deering.cxx
│           │   ├── JtDecode_VertexData_Deering.hxx
│           │   ├── JtDecode_VertexData_ExpMant.cxx
│           │   ├── JtDecode_VertexData_ExpMant.hxx
│           │   ├── JtDecode_VertexData_Quantized.cxx
│           │   └── JtDecode_VertexData_Quantized.hxx
│           ├── JtElement
│           │   ├── JtElement_MetaData_PMIManager.cxx
│           │   ├── JtElement_MetaData_PMIManager.hxx
│           │   ├── JtElement_ShapeLOD_Base.cxx
│           │   ├── JtElement_ShapeLOD_Base.hxx
│           │   ├── JtElement_ShapeLOD_TriStripSet.cxx
│           │   ├── JtElement_ShapeLOD_TriStripSet.hxx
│           │   ├── JtElement_ShapeLOD_Vertex.cxx
│           │   ├── JtElement_ShapeLOD_Vertex.hxx
│           │   ├── JtElement_XTBRep.cxx
│           │   └── JtElement_XTBRep.hxx
│           ├── JtNode
│           │   ├── JtNode_Base.cxx
│           │   ├── JtNode_Base.hxx
│           │   ├── JtNode_Group.cxx
│           │   ├── JtNode_Group.hxx
│           │   ├── JtNode_Instance.cxx
│           │   ├── JtNode_Instance.hxx
│           │   ├── JtNode_LOD.cxx
│           │   ├── JtNode_LOD.hxx
│           │   ├── JtNode_MetaData.cxx
│           │   ├── JtNode_MetaData.hxx
│           │   ├── JtNode_Part.cxx
│           │   ├── JtNode_Part.hxx
│           │   ├── JtNode_Partition.cxx
│           │   ├── JtNode_Partition.hxx
│           │   ├── JtNode_RangeLOD.cxx
│           │   ├── JtNode_RangeLOD.hxx
│           │   ├── JtNode_Shape_Base.cxx
│           │   ├── JtNode_Shape_Base.hxx
│           │   ├── JtNode_Shape_TriStripSet.cxx
│           │   ├── JtNode_Shape_TriStripSet.hxx
│           │   ├── JtNode_Shape_Vertex.cxx
│           │   └── JtNode_Shape_Vertex.hxx
│           ├── JtProperty
│           │   ├── JtProperty_Base.cxx
│           │   ├── JtProperty_Base.hxx
│           │   ├── JtProperty_LateLoaded.cxx
│           │   ├── JtProperty_LateLoaded.hxx
│           │   ├── JtProperty_String.cxx
│           │   └── JtProperty_String.hxx
│           └── JtToTopoDS
│               ├── JtToTopoDS_Builder.cxx
│               └── JtToTopoDS_Builder.hxx
└── jt文件解析开源程序jtassistant.zip

61 directories, 568 files


网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警