TheGPUPro:AdvancedRenderingTechniquesbookseriescoversready-to-useideasandproceduresthatcansolvemanyofyourdailygraphics-progra妹妹ingchallenges.Thefirstbookintheserieswouldn’thavebeenpossiblewithoutthehelpofmanypeople.FirstofallIwouldliketothankthesectioneditorsforthefantasticjobtheydid.TheworkofWessamBahnassi,SebastienSt.Laurent,NatalyaTatarchuk,CarstenDachsbacher,MatthiasWloka,ChristopherOat,andSa妹妹artinensuresthatthequalityoftheseriesstandsuptotheexpectationsofourreaders.ThegreatcoverscreenshotsweretakenfromCallofJuarez:BoundinBlood.IwouldliketothankTechlandforallowingustousethoseshots.Youwillalsofindapostmortemofthisgameinthebook.TheteamatAKPetersmadethewholeprojecthappen.IwanttothankAliceandKlausPeters,CharlotteHenderson,andthewholeproductionteam,whotookthearticlesandmadethemintoabook.Specialthanksgoouttoourfamiliesandfriends,whospentmanyeveningsandweekendsduringthelongbookproductioncyclewithoutus.Ihopeyouhaveasmuchfunreadingthebookaswehadcreatingit.—WolfgangEngel
2022/9/6 13:58:20 37.99MB GPU Pro
1
proteus8086用8086CPU,配置8284时钟芯片,提供CLK、READY、RESET信号。
8284芯片及四周器件参数见教材。
2022/9/6 5:53:16 18KB 作业
1
proteus8086用8086CPU,配置8284时钟芯片,提供CLK、READY、RESET信号。
8284芯片及四周器件参数见教材。
2022/9/6 5:53:16 18KB 作业
1
Highdetailed,customizableRealisticCarwithfullytexturedinteriorandopen-able4doors.ReadytouseinYourgameorvisualization.Thismodelhas4LODssoitcanbeusedforPCandmobileprojects.TechnicalDetails:Modelhas4LOD's:-LOD0:38670tris-LOD1:20121tris-LOD2:9521tris-LOD3:5126trisTexturesize:-Bodypaintandparts:2048-Interior:4096-Wheels:1024-LightsEmissive:1024-ChangedDesign-Itdoesn'tlook100%likeanyreallifecar.-CompatiblewithUnityVehicle.-AllmaterialsusingPBRUnityStandardshader.Albedo,metallic,smoothness,normalandocclusiontexturesincluded.-Emissivetextureforlightsincluded.-PSDsourcefilesincluded.-YoucanmakeYourowncustompaintingforbodyusingincludedPSDfile.-Clearandoptimizedgeometry.-ModelisproperlyscaledandalignedalongZ-axis.-FullytexturedInteriorwithemissivemap.-Righthandedversionofinteriorincluded.-Separatedandproperlyalignedfourwheels,brakediscs,brakecalipers.WorksperfectlywithUnityVehicle.-Separatedsteeringwheelanddashboardpointers.Readytoanimate.-separatedglass.-Separated4doors.Readytoanimate.-SeparatedWind-shieldWipers.Readytoanimate-LOD'scorrectlyimplementedtoallpartsofthecar.-8Carprefabsreadytodrivewithdifferentsetsofmaterials.-10wheelmaterialswithdifferentcoloursandmetallic/smothness-8CarPaintmaterialswithdifferentcoloursandmetallic/smothness-2Carpartsmaterials(Chromeandblackplasticdetailslikegrilletc.)-2Interiormaterials(DifferentSeatsColour)-Carpaintcolourandsmoothnesscanbecustomized.-Allmaterials,texturesandotherpartsofpackageproperlynamed.-2Demoscenesincluded.IfYouwanttodrivethiscarbydefault,justimportVehiclesandCamerasfromUnityStandardAssets.IfYoulikethisproduct,pleaserateandcomment.SupportEmail:darek.slanda@gmail.com
2022/9/5 8:51:42 194.98MB Unity Car 高质量模型
1
之前自己做的一个图书管理系统,显示图书借阅排行榜,因为翻译在数据库中有为空的字段,故前台显示会显示undefined。
以下贴上部门代码:$(document).ready(function(){$("#rankTabletbody").html("");varid=1;$.ajax({url:"bookInfo/bookInfo_rank.action",type:"POST",data:{},dataType:"json",success:function(data){$(data).each(func
2016/11/8 11:08:08 36KB ajax def ed
1
HTML页面,ajax是基于id的,所有用id表示。
拿到的数据会显示在这里ajax源码:$(document).ready(function(){$.ajax({url:admin/get_online_ganbu.php,//后台请求的数据,用的是PHPdataType:json,//数据格式type:post,//请求方式async:false,//能否异步请求success:function(dat
2017/9/12 23:17:54 32KB ajax 前端 前端开发
1
对初学AJAX的同学会有协助的。
----------ajax.js---------------varrequest=false;try{ request=newXMLHttpRequest();}catch(trymicrosoft){ try{ request=newActiveXObject("Msxml2.XMLHTTP"); } catch(othermicrosoft){ try{ request=newActiveXObject("Microsoft.XMLHTTP"); } catch(failed){ request=false; } }}if(!request)alert("ErrorinitializingXMLHttpRequest!");functiongetCustomerInfo(){ document.getElementById("output").innerHTML="Loading..."; document.getElementById("submit").disabled=true; varname=document.getElementById("name").value; vartext=document.getElementById("text").value; varkey=document.getElementById("key").value; varanswer=document.getElementById("answer").value; varpoststr="name="+name+"&text="+text+"&key="+key+"&answer="+answer; varurl="doit.php"; request.open("POST",url,true); request.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); request.send(poststr); request.onreadystatechange=updatePage;}functionupdatePage(){if(request.readyState==4)if(request.status==200)document.getElementById("output").innerHTML=request.responseText;elseif(request.status==404)alert("目标地址不存在");elsealert("警告:错误代码"+request.status);}functiongetInfo(){ document.getElementById("output1").innerHTML="Loading..."; varurl="show.php"; vard=newDate().getTime(); request.open("GET",url+"?d="+d.toString(),true); request.onreadystatechange=updatePage1; request.send();}functionupdatePage1(){if(request.readyState==4)if(request.status==200)document.getElementById("output1").innerHTML=request.responseText;elseif(request.status==404)alert("目标地址不存在");elsealert("警告:错误代码"+request.status);}
2017/4/14 22:50:25 79KB ajax
1
(含源码及报告)本程序分析了自2016年到2021年(外加)每年我国原油加工的产量,并且分析了2020年全国各地区原油加工量等,含饼状图,柱状图,折线图,数据在地图上显示。
运转本程序需要requests、bs4、csv、pandas、matplotlib、pyecharts库的支持,如果缺少某库请自行安装后再运转。
文件含6个excel表,若干个csv文件以及一个名字为render的html文件(需要用浏览器打开),直观的数据处理部分是图片以及html文件,可在地图中显示,数据处理的是excel文件。
不懂可以扫文件中二维码在QQ里面问。
2022/9/30 16:31:44 29.75MB 爬虫 python 源码软件 开发语言
1
非常棒的材料,分享给大家!!!Welcometothe100DaysofSwift!Thisisafreecollectionofvideos,tutorials,tests,andmore,alldrawnfromaroundmyexistingworkhereonHackingwithSwift,andalldesignedtohelpyoulearnSwift.It’saimedsquarelyatbeginnerswhowanttolearntobuildrealiOSapps,butstruggletofindagood,freecoursethatcanhelpthemachievetheirgoals.Ifthat’syou,welcome–Ihopeyou’rereadytoshowtheiOSworldwhatyou’remadeof!
2017/3/17 7:42:24 66.98MB Swift swiftui hackingswift
1
MasteringROSforRoboticsProgra妹妹ingisanadvancedguideofROSthatisverysuitableforreaderswhoalreadyhaveabasicknowledgeinROS.ROSiswidelyusedinroboticscompanies,universities,androboticsresearchinstitutesfordesigning,building,andsimulatingarobotmodelandinterfacingitintorealhardware.ROSisnowanessentialrequirementforRoboticengineers;thisguidecanhelpyouacquireknowledgeofROSandcanalsohelpyoupolishyourskillsinROSusinginteractiveexamples.Eventhoughitisanadvancedguide,youcanseethebasicsofROSinthefirstchaptertorefreshtheconcepts.ItalsohelpsROSbeginners.ThebookmainlyfocusesontheadvancedconceptsofROS,suchasROSNavigationstack,ROSMoveIt!,ROSplugins,nodelets,controllers,ROSIndustrial,andsoon.
2021/11/1 17:50:58 12.55MB ROS Robot
1
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡