温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

UFUN和NXOPEN中的变换矩阵区别有哪些

发布时间:2021-11-30 16:12:29 来源:亿速云 阅读:211 作者:小新 栏目:编程语言

这篇文章主要介绍UFUN和NXOPEN中的变换矩阵区别有哪些,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

UFUN中用于实体变换矩阵的函数为:
UF_MODL_transform_entities
NXOPEN中用于装配组件变换矩阵的类为:
ComponentNetwork
它们的变换矩阵方式是不同的,前者为动态变换,后者为静态变换。
动态变换求法:

            var invert = Current.Inverse();
            var trans = invert.Multiply(position);

静态变换求法(先旋转后平移):

            var cur = Current;
            cur.Transpose();//转置
            var pos = position;
            pos.Transpose();//转置
            var trans = cur.Inverse().Multiply(pos);
            var rotation = trans.UpperLeft.ToMatrix3x3();
            trans.Transpose();
            var translation = trans.Translation.ToVector3d();

分享下我的两个移动相关的类(部分相关类没有提供):

public class MoveComponentBuilder
    {
        #region Constructors
        protected MoveComponentBuilder()
        {
            var workPart = theSession.Parts.Work;
            _positioner = workPart.ComponentAssembly.Positioner;
            _netWork = (ComponentNetwork)_positioner.EstablishNetwork();
        }
        public static MoveComponentBuilder Create(List<Component> components, Matrix44 matrix)
        {
            var mCompBuilder = new MoveComponentBuilder();
            mCompBuilder.Current = matrix;
            mCompBuilder.HomePosition = matrix;
            mCompBuilder.Components.AddRange(components);
            mCompBuilder._netWork.SetMovingGroup(components.ToArray());
            mCompBuilder._netWork.MoveObjectsState = true;
            return mCompBuilder;
        }
        public static MoveComponentBuilder Create(List<Component> components,SpecifyOrientation manip)
        {
            var mCompBuilder = Create(components, manip.GetPosition());
            mCompBuilder.Manip = manip;
            return mCompBuilder;
        }
        #endregion
        #region Fields
        private Positioner _positioner;
        private ComponentNetwork _netWork;
        private Session theSession = Session.GetSession();
        #endregion
        #region Properties
        public Matrix44 Current { get; protected set; }
        public Matrix44 HomePosition { get; protected set; }
        public List<Component> Components { get; protected set; } = new List<Component>();
        public SpecifyOrientation Manip { get; protected set; }
        #endregion
        #region Methods
        public void Move(Matrix44 position)
        {
            var cur = Current;
            cur.Transpose();//转置
            var pos = position;
            pos.Transpose();//转置
            var trans = cur.Inverse().Multiply(pos);
            var rotation = trans.UpperLeft.ToMatrix3x3();
            trans.Transpose();
            var translation = trans.Translation.ToVector3d();
            _netWork.BeginDrag();
            _netWork.DragByTransform(translation,rotation);
            _netWork.EndDrag();
            Current = position;
        }
        public void BackHome()
        {
            Move(HomePosition);
        }
        public bool Update()
        {
            if (Manip==null)
            {
                return false;
            }
            Move(Manip.GetPosition());
            return true;
        }
        public bool UpdateManipOnly()
        {
            if (Manip==null)
            {
                return false;
            }
            Current = Manip.GetPosition();
            return true;
        }
        public void Apply()
        {
            _netWork.Solve();
        }
        #endregion
    }
public class MoveObjectBuilder
    {
        #region Conductor
        protected MoveObjectBuilder() { }
        public static MoveObjectBuilder Create(List<Tag> objs, Matrix44 matrix)
        {
            var mObj = new MoveObjectBuilder();
            mObj.Current = matrix;
            mObj.HomePosition = matrix;
            mObj.Objects.AddRange(objs);
            return mObj;
        }
        public static MoveObjectBuilder Create(List<Tag> objs, SpecifyOrientation manip)
        {
            var mObj = Create(objs, manip.GetPosition());
            mObj.Manip = manip;
            return mObj;
        }
        #endregion
        #region Fields
        private static UFSession theUfSession = UFSession.GetUFSession();
        private static Session theSession = Session.GetSession();
        #endregion
        #region Properties
        public List<Tag> Objects { get; protected set; } = new List<Tag>();
        public Matrix44 Current { get; protected set; }
        public Matrix44 HomePosition { get; protected set; }
        public SpecifyOrientation Manip { get; protected set; }
        #endregion
        #region Methods
        public void Move(Matrix44 position)
        {
            var invert = Current.Inverse();
            var trans = invert.Multiply(position);
            theUfSession.Modl.TransformEntities(
                Objects.Count, Objects.ToArray(), trans.ToArray());
            Current = position;
            theUfSession.Modl.Update();
        }
        public void BackHome()
        {
            Move(HomePosition);
        }
        public bool Update()
        {
            if (Manip == null)
            {
                return false;
            }
            Move(Manip.GetPosition());
            return true;
        }
        public bool UpdateManipOnly()
        {
            if (Manip==null)
            {
                return false;
            }
            Current = Manip.GetPosition();
            return true;
        }
        #endregion
    }

演示:

UFUN和NXOPEN中的变换矩阵区别有哪些

以上是“UFUN和NXOPEN中的变换矩阵区别有哪些”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI